-
If I have a header like this: # Оглавление the link to this header will be broken: [Link](index.md#оглавление) because MkDocs will convert it to Is it possible to disable this behavior? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Nov 28, 2022
Replies: 1 comment 1 reply
-
For non-ASCII languages, it's a good idea to use a Unicode-aware slugify function: markdown_extensions:
- toc:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lua-rocks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For non-ASCII languages, it's a good idea to use a Unicode-aware slugify function: