diff options
Diffstat (limited to '')
-rw-r--r-- | bin/dehtml.l | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/dehtml.l b/bin/dehtml.l index f585b701..51e7f4f7 100644 --- a/bin/dehtml.l +++ b/bin/dehtml.l @@ -60,8 +60,12 @@ static const struct { { L'>', ">" }, { L'"', """ }, { L' ', " " }, - { L'\u2014', "—" }, { L'\u00A9', "©" }, + { L'\u00B7', "·" }, + { L'\u00BB', "»" }, + { L'\u200F', "‏" }, + { L'\u2014', "—" }, + { L'\u2191', "↑" }, }; static void entity(void) { |