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
$ pandoc -v pandoc 1.19.2.1 Compiled with pandoc-types 1.17.0.4, texmath 0.9, skylighting 0.1.1.4 ...
When converting from markdown to markdown a space seems to be missing before the attributes in the reference:
$ pandoc -f markdown -t markdown --reference-links ![foo](bar.png){#id:1} ^D ![foo] [foo]: bar.png{#id:1}
If this is (again) sent through Pandoc, the former attributes become part of the image name as in:
$ pandoc -f markdown -t markdown --reference-links | pandoc -f markdown -t html ![foo](bar.png){#id:1} ^D <div class="figure"> <embed src="bar.png%7B#id:1%7D" /> <p class="caption">foo</p> </div>
The text was updated successfully, but these errors were encountered:
Markdown Writer: put space before refLinks, fixes jgm#3630
df593f9
944edb9
Markdown Writer: put space before reference link definitions
e02cfcd
Fixes #3630 (#3631). Previously the attributes in link reference definitions did not have a space preceding.
Successfully merging a pull request may close this issue.
When converting from markdown to markdown a space seems to be missing before the attributes in the reference:
If this is (again) sent through Pandoc, the former attributes become part of the image name as in:
The text was updated successfully, but these errors were encountered: