Merge branch 'notification-pleroma-settings' into 'develop'
[akkoma] / docs / config / custom_emoji.md
index d37220a72f805aab78a21e0a08fa002cd514a260..419a7d0e2366f05127a7376a8a28600372c4eca6 100644 (file)
@@ -18,10 +18,10 @@ foo, /emoji/custom/foo.png
 
 The files should be PNG (APNG is okay with `.png` for `image/png` Content-type) and under 50kb for compatibility with mastodon.
 
-# Emoji tags (groups)
+## Emoji tags (groups)
 
 Default tags are set in `config.exs`.
-```
+```elixir
 config :pleroma, :emoji,
   shortcode_globs: ["/emoji/custom/**/*.png"],
   groups: [
@@ -30,8 +30,8 @@ config :pleroma, :emoji,
   ]
 ```
 
-Order of the `groups` matters, so to override default tags just put your group on the top of the list. E.g:
-```
+Order of the `groups` matters, so to override default tags just put your group on top of the list. E.g:
+```elixir
 config :pleroma, :emoji,
   shortcode_globs: ["/emoji/custom/**/*.png"],
   groups: [
@@ -44,7 +44,7 @@ config :pleroma, :emoji,
   ]
 ```
 
-Priority of tag assign in emoji.txt and custom.txt:
+Priority of tags assigns in emoji.txt and custom.txt:
 
 `tag in file > special group setting in config.exs > default setting in config.exs`