hugo-geekblog/exampleSite/content/posts/emojies.md

1.6 KiB

title date authors tags
Emoji Support 2020-07-13T19:00:00+02:00
john-doe
Special User
Documentation

Emoji can be enabled in a Hugo project in a number of ways.

The emojify function can be called directly in templates or Inline Shortcodes.

To enable emoji globally, set enableEmoji to true in your site's configuration and then you can type emoji shorthand codes directly in content files:

{{< emojify "🙈" >}} :see_no_evil: {{< emojify "🙉" >}} :hear_no_evil: {{< emojify "🙊" >}} :speak_no_evil:

The Emoji cheat sheet is a useful reference for emoji shorthand codes.

{{< hint info >}} Info
The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack. {{< /hint >}}

Example:

{{< highlight html "linenos=table" >}} .emoji { font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; } {{< /highlight >}}