diff --git a/Libraries/LibWeb/Parser/HTMLParser.cpp b/Libraries/LibWeb/Parser/HTMLParser.cpp
index 493d8b9a39..77f3dcb7f1 100644
--- a/Libraries/LibWeb/Parser/HTMLParser.cpp
+++ b/Libraries/LibWeb/Parser/HTMLParser.cpp
@@ -226,6 +226,7 @@ static bool parse_html_document(const StringView& html, Document& document, Pare
{ "&", "&" },
{ "—", "-" },
{ " ", " " }, // FIXME: Should actually be *non-breaking*
+ { """, "\"" },
{ "»", ">>" },
{ "«", "<<" },
};