mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:44:58 +00:00
LibWeb: Parse " into '"'
This commit is contained in:
parent
0751592a18
commit
25cfdf3f67
1 changed files with 1 additions and 0 deletions
|
@ -226,6 +226,7 @@ static bool parse_html_document(const StringView& html, Document& document, Pare
|
|||
{ "&", "&" },
|
||||
{ "—", "-" },
|
||||
{ " ", " " }, // FIXME: Should actually be *non-breaking*
|
||||
{ """, "\"" },
|
||||
{ "»", ">>" },
|
||||
{ "«", "<<" },
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue