1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 04:44:58 +00:00

LibWeb: Parse " into '"'

This commit is contained in:
Andreas Kling 2020-05-21 12:27:08 +02:00
parent 0751592a18
commit 25cfdf3f67

View file

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