summary refs log tree commit diff
path: root/bin/dehtml.l
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-07 17:22:04 -0400
committerJune McEnroe <june@causal.agency>2021-09-07 17:22:04 -0400
commitd578563a9bd4b496132a5a0d5252d21ac1041282 (patch)
treedcaca6dc3a8e1844c86343a6517b5fe503dfa869 /bin/dehtml.l
parentGenerate bin html for .l files correctly (diff)
downloadsrc-d578563a9bd4b496132a5a0d5252d21ac1041282.tar.gz
src-d578563a9bd4b496132a5a0d5252d21ac1041282.zip
Add HTML entities used by "legacy" twitter
Diffstat (limited to 'bin/dehtml.l')
-rw-r--r--bin/dehtml.l6
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'>', "&gt;" },
 	{ L'"', "&quot;" },
 	{ L' ', "&nbsp;" },
-	{ L'\u2014', "&mdash;" },
 	{ L'\u00A9', "&copy;" },
+	{ L'\u00B7', "&middot;" },
+	{ L'\u00BB', "&raquo;" },
+	{ L'\u200F', "&rlm;" },
+	{ L'\u2014', "&mdash;" },
+	{ L'\u2191', "&uarr;" },
 };
 
 static void entity(void) {