diff --git a/Libraries/LibHTML/Parser/HTMLParser.cpp b/Libraries/LibHTML/Parser/HTMLParser.cpp index 94dc1299f14..cfcd32d3ea2 100644 --- a/Libraries/LibHTML/Parser/HTMLParser.cpp +++ b/Libraries/LibHTML/Parser/HTMLParser.cpp @@ -145,7 +145,8 @@ static bool parse_html_document(const StringView& html, Document& document, Pare static Escape escapes[] = { { "<", "<" }, { ">", ">" }, - { "&", "&" } + { "&", "&" }, + { "—", "-" }, }; auto rest_of_html = html.substring_view(i, html.length() - i); bool found = false;