mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-24 23:23:58 +00:00
LibWeb: Parse " into '"'
This commit is contained in:
parent
0751592a18
commit
25cfdf3f67
Notes:
sideshowbarker
2024-07-19 06:17:40 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/25cfdf3f679
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…
Reference in a new issue