2020-07-24 10:59:16 +03:00
|
|
|
|
---
|
|
|
|
|
template: overrides/main.html
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Icons + Emojis
|
|
|
|
|
|
|
|
|
|
One of the best features of Material for MkDocs is the possibility to use [more
|
2021-10-05 00:36:31 +03:00
|
|
|
|
than 8.000 icons][icon search] and thousands of emojis in your project
|
|
|
|
|
documentation with practically zero additional effort. Moreover, custom icons
|
|
|
|
|
can be added and used in `mkdocs.yml`, documents and templates.
|
|
|
|
|
|
|
|
|
|
[icon search]: #search
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
2021-02-06 14:35:19 +03:00
|
|
|
|
## Search
|
|
|
|
|
|
2021-02-24 20:02:09 +03:00
|
|
|
|
<div class="mdx-iconsearch" data-mdx-component="iconsearch">
|
2021-02-14 16:51:08 +03:00
|
|
|
|
<input
|
2021-02-24 20:02:09 +03:00
|
|
|
|
class="md-input md-input--stretch mdx-iconsearch__input"
|
2021-02-15 17:57:44 +03:00
|
|
|
|
placeholder="Search the icon and emoji database"
|
2021-02-24 20:02:09 +03:00
|
|
|
|
data-mdx-component="iconsearch-query"
|
2021-02-14 16:51:08 +03:00
|
|
|
|
/>
|
2021-02-24 20:02:09 +03:00
|
|
|
|
<div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result">
|
|
|
|
|
<div class="mdx-iconsearch-result__meta"></div>
|
|
|
|
|
<ol class="mdx-iconsearch-result__list"></ol>
|
2021-02-14 16:51:08 +03:00
|
|
|
|
</div>
|
2021-02-06 14:35:19 +03:00
|
|
|
|
</div>
|
2021-02-14 16:51:08 +03:00
|
|
|
|
<small>
|
|
|
|
|
:octicons-light-bulb-16:
|
2021-10-05 00:36:31 +03:00
|
|
|
|
**Tip:** Enter some keywords to find icons and emojis and click on the
|
|
|
|
|
shortcode to copy it to your clipboard.
|
2021-02-14 16:51:08 +03:00
|
|
|
|
</small>
|
2021-02-06 14:35:19 +03:00
|
|
|
|
|
2020-07-24 10:59:16 +03:00
|
|
|
|
## Configuration
|
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
This configuration enables the use of icons and emojis by using simple
|
|
|
|
|
shortcodes which can be discovered through the [icon search]. Add the following
|
|
|
|
|
lines to `mkdocs.yml`:
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- pymdownx.emoji:
|
|
|
|
|
emoji_index: !!python/name:materialx.emoji.twemoji
|
|
|
|
|
emoji_generator: !!python/name:materialx.emoji.to_svg
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The following icon sets are bundled with Material for MkDocs:
|
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
- :material-material-design: – [Material Design]
|
|
|
|
|
- :fontawesome-brands-font-awesome: – [FontAwesome]
|
|
|
|
|
- :octicons-mark-github-16: – [Octicons]
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
See additional configuration options:
|
2020-07-26 15:46:09 +03:00
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
- [Emoji]
|
|
|
|
|
- [Emoji with custom icons]
|
2020-07-26 15:46:09 +03:00
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
[Material Design]: https://materialdesignicons.com/
|
|
|
|
|
[FontAwesome]: https://fontawesome.com/icons?d=gallery&m=free
|
|
|
|
|
[Octicons]: https://octicons.github.com/
|
|
|
|
|
[additional icons]: ../setup/changing-the-logo-and-icons.md#additional-icons
|
|
|
|
|
[Emoji]: ../setup/extensions/python-markdown-extensions.md#emoji
|
|
|
|
|
[Emoji with custom icons]: ../setup/extensions/python-markdown-extensions.md#custom_icons
|
2020-07-26 15:46:09 +03:00
|
|
|
|
|
2020-07-24 10:59:16 +03:00
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
### Using emojis
|
|
|
|
|
|
|
|
|
|
Emojis can be integrated in Markdown by putting the shortcode of the emoji
|
2021-10-05 00:36:31 +03:00
|
|
|
|
between two colons. If you're using [Twemoji] (recommended), you can look up
|
|
|
|
|
the shortcodes at [Emojipedia].
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
:smile:
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
|
|
|
|
|
:smile:
|
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
[Twemoji]: https://twemoji.twitter.com/
|
|
|
|
|
[Emojipedia]: https://emojipedia.org/twitter/
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
|
|
|
|
### Using icons
|
|
|
|
|
|
2021-10-05 00:36:31 +03:00
|
|
|
|
When [Emoji] is enabled, icons can be used similar to emojis, by referencing
|
2020-07-24 10:59:16 +03:00
|
|
|
|
a valid path to any icon bundled with the theme, which are located in the
|
|
|
|
|
[`.icons`][1] directory, and replacing `/` with `-`:
|
|
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
|
|
```
|
2020-11-16 00:25:11 +03:00
|
|
|
|
- :material-account-circle: – `.icons/material/account-circle.svg`
|
|
|
|
|
- :fontawesome-regular-laugh-wink: – `.icons/fontawesome/regular/laugh-wink.svg`
|
2021-09-12 19:59:36 +03:00
|
|
|
|
- :octicons-repo-push-16: – `.icons/octicons/repo-push-16.svg`
|
2020-07-24 10:59:16 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
|
2020-11-16 00:25:11 +03:00
|
|
|
|
- :material-account-circle: – [`.icons/material/account-circle.svg`][14]
|
|
|
|
|
- :fontawesome-regular-laugh-wink: – [`.icons/fontawesome/regular/laugh-wink.svg`][15]
|
2021-09-12 19:59:36 +03:00
|
|
|
|
- :octicons-repo-push-16: – [`.icons/octicons/repo-push-16.svg`][16]
|
2020-07-26 15:46:09 +03:00
|
|
|
|
|
|
|
|
|
[14]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/material/.icons/material/account-circle.svg
|
|
|
|
|
[15]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/material/.icons/fontawesome/regular/laugh-wink.svg
|
2021-09-12 19:59:36 +03:00
|
|
|
|
[16]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/material/.icons/octicons/repo-push-16.svg
|
2020-07-26 15:46:09 +03:00
|
|
|
|
|
2020-07-26 18:06:57 +03:00
|
|
|
|
#### with colors
|
|
|
|
|
|
|
|
|
|
When the [Attribute List][17] extension is enabled, custom CSS classes and
|
|
|
|
|
attributes can be added to icons by suffixing the icon with a special syntax.
|
|
|
|
|
While HTML and CSS allow to use [inline styles][18], it's always best to add
|
|
|
|
|
an [additional stylesheet][19] and put styles into dedicated CSS classes:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
.medium {
|
|
|
|
|
color: #00AB6C;
|
|
|
|
|
}
|
|
|
|
|
.twitter {
|
|
|
|
|
color: #1DA1F2;
|
|
|
|
|
}
|
|
|
|
|
.facebook {
|
|
|
|
|
color: #4267B2;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-08-03 00:15:19 +03:00
|
|
|
|
Then, simply add the CSS class to the icon.
|
2020-07-26 18:06:57 +03:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.medium {
|
|
|
|
|
color: #00AB6C;
|
|
|
|
|
}
|
|
|
|
|
.twitter {
|
|
|
|
|
color: #1DA1F2;
|
|
|
|
|
}
|
|
|
|
|
.facebook {
|
|
|
|
|
color: #4267B2;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
|
|
``` markdown
|
2021-03-13 16:30:29 +03:00
|
|
|
|
- :fontawesome-brands-medium:{ .medium } – Medium
|
|
|
|
|
- :fontawesome-brands-twitter:{ .twitter } – Twitter
|
|
|
|
|
- :fontawesome-brands-facebook:{ .facebook } – Facebook
|
2020-07-26 18:06:57 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
|
2021-03-13 16:30:29 +03:00
|
|
|
|
- :fontawesome-brands-medium:{ .medium } – Medium
|
|
|
|
|
- :fontawesome-brands-twitter:{ .twitter } – Twitter
|
|
|
|
|
- :fontawesome-brands-facebook:{ .facebook } – Facebook
|
2020-07-26 18:06:57 +03:00
|
|
|
|
|
|
|
|
|
[17]: #attribute-list
|
|
|
|
|
[18]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/style
|
2020-09-19 15:34:40 +03:00
|
|
|
|
[19]: ../customization.md#additional-css
|
2020-07-26 18:06:57 +03:00
|
|
|
|
|
|
|
|
|
#### with animations
|
|
|
|
|
|
|
|
|
|
Similar to adding [colors][20], it's just as easy to add [CSS animations][21] to
|
|
|
|
|
icons by using an [additional stylesheet][6], defining a `#!css @keyframes` rule
|
|
|
|
|
and adding the dedicated CSS class to the icon:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
@keyframes heart {
|
|
|
|
|
0%, 40%, 80%, 100% {
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
20%, 60% {
|
|
|
|
|
transform: scale(1.15);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.heart {
|
|
|
|
|
animation: heart 1000ms infinite;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-08-03 00:15:19 +03:00
|
|
|
|
Then, simply add the CSS class to the icon.
|
2020-07-26 18:06:57 +03:00
|
|
|
|
|
|
|
|
|
_Example_:
|
|
|
|
|
|
|
|
|
|
``` markdown
|
2021-03-13 16:30:29 +03:00
|
|
|
|
:octicons-heart-fill-24:{ .heart }
|
2020-07-26 18:06:57 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
_Result_:
|
|
|
|
|
|
2021-03-13 16:30:29 +03:00
|
|
|
|
:octicons-heart-fill-24:{ .mdx-heart }
|
2020-07-24 10:59:16 +03:00
|
|
|
|
|
2020-07-26 18:06:57 +03:00
|
|
|
|
[20]: #with-colors
|
|
|
|
|
[21]: https://developer.mozilla.org/en-US/docs/Web/CSS/animation
|
2020-07-30 21:36:08 +03:00
|
|
|
|
|
|
|
|
|
## Customization
|
|
|
|
|
|
|
|
|
|
### Using icons in templates
|
|
|
|
|
|
|
|
|
|
When you're [extending the theme][22] with partials or blocks, you can simply
|
|
|
|
|
reference any icon that's [bundled with the theme][1] with Jinja's
|
|
|
|
|
[`include`][23] function and wrap it with the `twemoji` class:
|
|
|
|
|
|
|
|
|
|
``` html
|
|
|
|
|
<span class="twemoji">
|
|
|
|
|
{% include ".icons/fontawesome/brands/twitter.svg" %}
|
|
|
|
|
</span>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This is exactly what Material for MkDocs does in its templates.
|
|
|
|
|
|
|
|
|
|
[22]: ../customization.md#extending-the-theme
|
|
|
|
|
[23]: https://jinja.palletsprojects.com/en/2.11.x/templates/#include
|