summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2022-11-13 17:14:14 +0100
committerGravatar default2022-11-13 17:14:14 +0100
commitaeec85837051e78ad618df10dea707d47ec5e23b (patch)
tree3a93aefe8a08da2e66c9275227b849b61c6f8694
parentAlso delete JS in the people/ page. (diff)
downloadsnac2-aeec85837051e78ad618df10dea707d47ec5e23b.tar.gz
snac2-aeec85837051e78ad618df10dea707d47ec5e23b.tar.xz
snac2-aeec85837051e78ad618df10dea707d47ec5e23b.zip
Added more emojis.
-rw-r--r--doc/snac.54
-rw-r--r--format.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/snac.5 b/doc/snac.5
index 2a310f4..dbcbeaf 100644
--- a/doc/snac.5
+++ b/doc/snac.5
@@ -49,9 +49,9 @@ is found.
49The following traditional ASCII emoticons or special strings are 49The following traditional ASCII emoticons or special strings are
50converted to related emojis: 50converted to related emojis:
51.Bd -literal 51.Bd -literal
52:-) :-D X-D ;-) B-) :-( :-* 52:-) :-D X-D ;-) B-) :-( :-* <3
53:-/ 8-o %-) :_( :-| :facepalm: :shrug: 53:-/ 8-o %-) :_( :-| :facepalm: :shrug:
54:eyeroll: :beer: :beers: :munch: 54:eyeroll: :beer: :beers: :munch: :thumb:
55.Ed 55.Ed
56.El 56.El
57.Pp 57.Pp
diff --git a/format.c b/format.c
index c38352e..0e5c95b 100644
--- a/format.c
+++ b/format.c
@@ -24,12 +24,14 @@ struct {
24 { "%-)", "&#129322;" }, 24 { "%-)", "&#129322;" },
25 { ":_(", "&#128546;" }, 25 { ":_(", "&#128546;" },
26 { ":-|", "&#128528;" }, 26 { ":-|", "&#128528;" },
27 { "<3", "&#128147;" },
27 { ":facepalm:", "&#129318;" }, 28 { ":facepalm:", "&#129318;" },
28 { ":shrug:", "&#129335;" }, 29 { ":shrug:", "&#129335;" },
29 { ":eyeroll:", "&#128580;" }, 30 { ":eyeroll:", "&#128580;" },
30 { ":beer:", "&#127866;" }, 31 { ":beer:", "&#127866;" },
31 { ":beers:", "&#127867;" }, 32 { ":beers:", "&#127867;" },
32 { ":munch:", "&#128561;" }, 33 { ":munch:", "&#128561;" },
34 { ":thumb:", "&#128077;" },
33 { NULL, NULL } 35 { NULL, NULL }
34}; 36};
35 37