Replies: 2 comments
-
It's worth pointing out, that the link the TOC uses does not work. It doesn't link to anything and also isn't greyed out when scrolling past the page section that it should link to. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Andre601 Is it a question worth asking to the maintainers of python-markdown? Unless you see somme direct connection to Mkdocs-Macros? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have the following template file included on a page to generate content:
Details
What I now noticed is, that the
toc
extension of Python-Markdown has a mental breakdown when generating the link within the "Table of Contents" section.Either that or the Theme (Material for MkDocs) has a mental breakdown.
I'm unsure of what could be the cause here, but my current guesses go towards the
e
filter within the{ #{{ name.text | lower() | replace(' ', '-') | e }} }
part as the generated link seems to be similar to URL encoded values.To give an example, one site has the following page meta set:
And this is the resulting link within the
toc
:...which is completely different from the one generated through the attribute list extension:
I ask here, as I believe this to be an issue on my end using the Macros plugin.
Here is also my current
plugins
andmarkdown_extensions
configurations:Details
Beta Was this translation helpful? Give feedback.
All reactions