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
Tested on both cabal install version and the latest git version (3b79246)
cabal install
$ pandoc --version pandoc 1.12.2.1 Compiled with texmath 0.6.5.2, highlighting-kate 0.5.5.
Here is test.md, trying to write a raw <script> in markdown:
test.md
<script>
<script type="text/javascript"> var a = 1; </script>
Render it by: pandoc -f markdown-markdown_in_html_blocks test.md, the output is:
pandoc -f markdown-markdown_in_html_blocks test.md
<script type="text/javascript"> <p>var a = 1; </script></p>
which is bad. My expected output should be the same as what pandoc -f markdown test.md output:
pandoc -f markdown test.md
i.e. should not touch anything in the <script> tag
The text was updated successfully, but these errors were encountered:
2f00f5c
No branches or pull requests
Tested on both
cabal install
version and the latest git version (3b79246)Here is
test.md
, trying to write a raw<script>
in markdown:Render it by:
pandoc -f markdown-markdown_in_html_blocks test.md
, the output is:which is bad. My expected output should be the same as what
pandoc -f markdown test.md
output:i.e. should not touch anything in the
<script>
tagThe text was updated successfully, but these errors were encountered: