From 26afd531e92dc90b7e797372498fa83408f0caad Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 7 Sep 2021 17:22:04 -0400 Subject: Add HTML entities used by "legacy" twitter --- bin/dehtml.l | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) { -- cgit 1.4.1