LibWeb: Parse " into '"'

This commit is contained in:
Andreas Kling 2020-05-21 12:27:08 +02:00
parent 0751592a18
commit 25cfdf3f67
Notes: sideshowbarker 2024-07-19 06:17:40 +09:00

View file

@ -226,6 +226,7 @@ static bool parse_html_document(const StringView& html, Document& document, Pare
{ "&", "&" },
{ "—", "-" },
{ " ", " " }, // FIXME: Should actually be *non-breaking*
{ """, "\"" },
{ "»", ">>" },
{ "&laquo;", "<<" },
};