summaryrefslogtreecommitdiff
path: root/deps/discord-haskell/docs/emoji.md
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2023-11-16 19:06:43 -0500
committerLLLL Colonq <llll@colonq>2023-11-16 19:06:43 -0500
commitdcef0b65069fb38fd0f6c4382353167f603ebff1 (patch)
tree45954ffe308c3dd056e6af4f734e6d2af89e5856 /deps/discord-haskell/docs/emoji.md
Initial commit
Diffstat (limited to 'deps/discord-haskell/docs/emoji.md')
-rw-r--r--deps/discord-haskell/docs/emoji.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/deps/discord-haskell/docs/emoji.md b/deps/discord-haskell/docs/emoji.md
new file mode 100644
index 0000000..ce3d3a9
--- /dev/null
+++ b/deps/discord-haskell/docs/emoji.md
@@ -0,0 +1,13 @@
+
+### Emoji
+
+For single character Emoji you can use the unicode name ("eyes", "fire", etc).
+
+For multi-character Emoji you must use the discord format. Type `\:emoji:` into
+a discord chat and paste that into the Text
+
+For example `:thumbsup::skin-tone-3:` is `"👍\127997"`.
+A custom emoji will look like `<name:id_number>` or `name:id_number`.
+
+See [examples/ping-pong.hs](https://github.com/discord-haskell/discord-haskell/blob/master/examples/ping-pong.hs)
+ for a `CreateReaction` request in use.