Skip to content

Commit

Permalink
fix(docs): deprecation warning in mkdocs (#572)
Browse files Browse the repository at this point in the history
Address deprecation warning when running `poetry run mkdocs build
--strict`.

From the upstream [mkdocs-material emoji
documentation](https://squidfunk.github.io/mkdocs-material/reference/icons-emojis/?h=material+emoji#configuration):
```
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
```
  • Loading branch information
tcarmet authored Apr 3, 2024
2 parents da4ad9d + 94c9bf3 commit b4c1186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
Expand Down

0 comments on commit b4c1186

Please sign in to comment.