We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jgm
tarleb
silby
Learn more about funding links in repositories.
Report abuse
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
This reStructuredText sample produces invalid HTML code in Pandoc:
`click here`__ or `click here`__ .. _link1: http://www.example.com/ .. _link2: http://johnmacfarlane.net/pandoc/ __ link1_ __ link2_
It currently generates this HTML:
<p><a href="link1_">click here</a> or <a href="link2_">click here</a></p>
But it should generate this HTML:
<p><a href=http://www.example.com/">click here</a> or <a href="http://johnmacfarlane.net/pandoc/">click here</a></p>
The text was updated successfully, but these errors were encountered:
This is still an issue with 1.13.1. I suspect that hyperlink targets are not implemented fully.
Sorry, something went wrong.
5750149
No branches or pull requests
This reStructuredText sample produces invalid HTML code in Pandoc:
It currently generates this HTML:
But it should generate this HTML:
The text was updated successfully, but these errors were encountered: