You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating system: WSL2 on Windows, Ubuntu distribution.
What operating system are you using?
Linux
Describe the Bug
When parsing a markdown document with footnotes, this parses into a fine HTML. However, if that markdown is included in a .rst file, then the footnotes break. In particular, the references to the footnotes are parsed into <a href="#id1"><span class="problematic" id="id1"> and the footnotes themself get a new id.
See below the rendered output of ./index.html:
It is not clear to me whether this is a bug on MyST's or Sphinx's side.
Expected Behavior
I would expect the footnotes in the HTML that includes Markdown to work properly.
See below the rendered output of ./test.html:
To Reproduce
conf.py
extensions= [
"myst_parser",
]
index.rst
.. include:: test.md:parser:myst_parser.sphinx_
test.md
# Example
Following the footnote example follows [the example in the v4.0.1 documentation](https://myst-parser.readthedocs.io/en/v4.0.1/syntax/typography.html#footnotes), although the manually-numbered footnote is auto-numbered.
- This is a manually-numbered footnote reference.[^a]- This is an auto-numbered footnote reference.[^myref][^myref]: This is an auto-numbered footnote definition.
[^a]: This is a manually-numbered footnote definition.
Then just run sphinx-build . public. The output will show
What version of
myst-parser
are you using?4.0.0
What version dependencies are you using?
Operating system: WSL2 on Windows, Ubuntu distribution.
What operating system are you using?
Linux
Describe the Bug
When parsing a markdown document with footnotes, this parses into a fine HTML. However, if that markdown is included in a .rst file, then the footnotes break. In particular, the references to the footnotes are parsed into
<a href="#id1"><span class="problematic" id="id1">
and the footnotes themself get a new id.See below the rendered output of
./index.html
:It is not clear to me whether this is a bug on MyST's or Sphinx's side.
Expected Behavior
I would expect the footnotes in the HTML that includes Markdown to work properly.
See below the rendered output of
./test.html
:To Reproduce
conf.py
index.rst
test.md
Then just run
sphinx-build . public
. The output will showNote: the actual example in the documentation has a manually-numbered footnote
^3
, but this also introduces an error. This is described in #1025.The text was updated successfully, but these errors were encountered: