Skip to content

Icons, Emojis

One of the best features of Zensical is the possibility to use more than 10,000 icons and thousands of emojis in your project documentation with practically zero additional effort. Moreover, custom icons can be added and used in your configuration, documents and templates.

Configuration

This configuration enables the use of icons and emojis by using simple shortcodes. Add the following lines to your configuration:

[project.markdown_extensions.attr_list]
[project.markdown_extensions.pymdownx.emoji]
markdown_extensions:
  - attr_list
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg

See additional configuration options:

Included icon sets

The following icon sets are bundled with Zensical (links lead to search page for each):

Note that you are not limited to these icons as you can add your own icons.

Usage

Use emojis

Emojis can be integrated in Markdown by putting the shortcode of the emoji between two colons. If you're using Twemoji (recommended), you can look up the shortcodes at Emojipedia:

Emoji
:smile:

😄

Use icons

When Emoji is enabled, icons can be used similar to emojis, by referencing a valid path to any icon bundled with the theme, which are located in the .icons directory, and replacing / with -:

Icon
:fontawesome-regular-face-laugh-wink:

with colors

When Attribute Lists is enabled, custom CSS classes can be added to icons. While HTML allows inline styles, it's always recommended to add an additional style sheet and move declarations into dedicated CSS classes:

.youtube {
  color: #EE0F0F;
}
[project]
extra_css = ["stylesheets/extra.css"]
extra_css:
  - stylesheets/extra.css

After applying the customization, add the CSS class to the icon shortcode:

Icon with color
:fontawesome-brands-youtube:{ .youtube }

with animations

Similar to adding colors, it's just as easy to add animations to icons by using an additional style sheet, defining a @keyframes rule and adding a dedicated CSS class to the icon:

@keyframes heart {
  0%, 40%, 80%, 100% {
    transform: scale(1);
  }
  20%, 60% {
    transform: scale(1.15);
  }
}
.heart {
  animation: heart 1000ms infinite;
}
[project]
extra_css = ["stylesheets/extra.css"]
extra_css:
  - stylesheets/extra.css

After applying the customization, add the CSS class to the icon shortcode:

Icon with animation
:octicons-heart-fill-24:{ .heart }

Customization

Use icons in templates

When you're extending the theme with partials or blocks, you can simply reference any available icon with Jinja's include function and wrap it with the .twemoji CSS class:

<span class="twemoji">
  {% include ".icons/fontawesome/brands/youtube.svg" %}
</span>

This is exactly what Zensical does in its templates.