this is more a question than an issue. Let's assume that I use as source file Markdown Documentation - Basics.text and as expected result Markdown Documentation - Basics.html from your test suite folder. Everything works really smoothly, but I have no idea how to turn off HTML escaping. As far as I've understood the documentation, it should be disabled by default and only enabled, if the render flag HTML_ESCAPE is set.
AssertionError: assert '<h1>Markdown...code></pre>\n' == '<h1>Markdown:...code></pre>\n'
Skipping 524 identical leading characters in diff, use -v to show
- f Markdown’s Formatting Syntax</h2>
? ^^ -----
+ f Markdown's Formatting Syntax</h2>
? ^
- <p>This page offers a brief overview of what it’s like to use Markdown.
? ^^ -----
+ <p>This page offers a brief overview of what it's like to use Markdown.
My question would be how to turn off default auto-escaping? Or am I'm deeply misunderstanding something?
Hello Frank,
this is more a question than an issue. Let's assume that I use as source file
Markdown Documentation - Basics.text
and as expected resultMarkdown Documentation - Basics.html
from your test suite folder. Everything works really smoothly, but I have no idea how to turn off HTML escaping. As far as I've understood the documentation, it should be disabled by default and only enabled, if the render flagHTML_ESCAPE
is set.The pseudo code
provides me following error:
My question would be how to turn off default auto-escaping? Or am I'm deeply misunderstanding something?