diff options
author | June McEnroe <june@causal.agency> | 2021-09-07 17:22:04 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-07 17:22:04 -0400 |
commit | 26afd531e92dc90b7e797372498fa83408f0caad (patch) | |
tree | 700cf9da0e55269401a8232ce6f5d603ab786963 | |
parent | Generate bin html for .l files correctly (diff) | |
download | src-26afd531e92dc90b7e797372498fa83408f0caad.tar.gz src-26afd531e92dc90b7e797372498fa83408f0caad.zip |
Add HTML entities used by "legacy" twitter
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 7793cdbc..45efc5d1 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) { |