diff --git a/Libraries/LibWeb/Parser/HTMLParser.cpp b/Libraries/LibWeb/Parser/HTMLParser.cpp index 77f3dcb7f1..119bd7c75d 100644 --- a/Libraries/LibWeb/Parser/HTMLParser.cpp +++ b/Libraries/LibWeb/Parser/HTMLParser.cpp @@ -229,6 +229,7 @@ static bool parse_html_document(const StringView& html, Document& document, Pare { """, "\"" }, { "»", ">>" }, { "«", "<<" }, + { "©", "\xC2\xA9" }, }; auto rest_of_html = html.substring_view(i, html.length() - i); bool found = false;