We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
convert
build
Given an empty directory out, and in/index.mmd containing:
out
in/index.mmd
# Test Here is some text referencing footnote one[^1]. [^1]: This is a footnote.
Then running npx mpx build --input in --output out does not handle the footnote correctly. You end up with html that renders like this in a browser:
npx mpx build --input in --output out
Here is some text referencing footnote one[^1]. [^1]: This is a footnote.
(where the text [^1] is just plain text, not a link)
[^1]
However, npx mpx convert in/index.mmd out/index.html converts the footnote correctly, so that you end up with html that renders like this:
npx mpx convert in/index.mmd out/index.html
Here is some text referencing footnote one[1]. This is a footnote. ↩︎
(where the [1] is a link to the footnote, and the ↩︎ is a link back to the relevant point in the document)
[1]
↩︎
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given an empty directory
out
, andin/index.mmd
containing:Then running
npx mpx build --input in --output out
does not handle the footnote correctly. You end up with html that renders like this in a browser:(where the text
[^1]
is just plain text, not a link)However,
npx mpx convert in/index.mmd out/index.html
converts the footnote correctly, so that you end up with html that renders like this:(where the
[1]
is a link to the footnote, and the↩︎
is a link back to the relevant point in the document)The text was updated successfully, but these errors were encountered: