mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:24:59 +00:00
LibWeb: Add HTML copyright escape
This commit is contained in:
parent
b85ab86c84
commit
4e8bcda4d1
1 changed files with 1 additions and 0 deletions
|
@ -229,6 +229,7 @@ static bool parse_html_document(const StringView& html, Document& document, Pare
|
|||
{ """, "\"" },
|
||||
{ "»", ">>" },
|
||||
{ "«", "<<" },
|
||||
{ "©", "\xC2\xA9" },
|
||||
};
|
||||
auto rest_of_html = html.substring_view(i, html.length() - i);
|
||||
bool found = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue