Add "†" HTML entity.

This commit is contained in:
ManoloFLTK 2020-07-01 11:58:33 +02:00
parent e98d7d8df5
commit 64de9bd3fc
1 changed files with 2 additions and 1 deletions

View File

@ -3693,7 +3693,8 @@ quote_char(const char *p) { // I - Quoted string
{ "yacute;", 7, 253 },
{ "yen;", 4, 165 },
{ "Yuml;", 5, 0x0178 },
{ "yuml;", 5, 255 }
{ "yuml;", 5, 255 },
{ "dagger;", 7, 0x2020 }
};
if (!strchr(p, ';')) return -1;