Chris Sewell
Chris Sewell
gonna re-open, to remember to put this in the docs 👍
Hmm, ok cheers so the label of an admonition get turned into an anchor. I was not aware of that, and it feels like that should not be the case?...
This may be similar to https://github.com/executablebooks/MyST-Parser/issues/195, whereby docutils/sphinx seems to treat such references differently. Should probably track down in the code exactly where/why it is doing this
I think its treating them as "auto-targets", similar to autofootnote; the only fix may be to stick a prefix onto such slugs e.g. `if target.isdigit(): target = "-" + target"...
Heya, yeh it is certainly possible, the pain point is that I don't believe docutils/sphinx have any "standard" node for videos, so we can't just generate that and "hand it...
cc @jstac @mmcky @najuzilu @phaustin, since I know you guys have worked with tex macros before Does something like this make sense?
thanks, I will move this over to markdown-it-py, where the bug originates
See also documentation: https://myst-parser--485.org.readthedocs.build/en/485/syntax/optional.html#table-of-contents-lists
Heya, > To that extent, if people have to write not-quite-markdown syntax like [Link text](https://example.com "Example external link"), then don't they lose the benefits of "Writing a TOCtree in pure...
> It seems like [Example external link](https://example.com) is what they'd expect to be able to do. I suggest removing Link text entirely from examples as it will make it seem...