Opportunity to improve output compatibility: md2html replaces an initial TAB with four spaces while cmark doesn't.
test subject:
<!--
x
-->
```
<!--
y
-->
```
z
expected output (cmark output)
<!--
x
-->
<pre><code><!--
y
-->
</code></pre>
<pre><code>z
</code></pre>
actual output: (md2html output)
<!--
x
-->
<pre><code><!--
y
-->
</code></pre>
<pre><code>z
</code></pre>
Versions tested:
- md2html release-0.5.1-46-g3848bfb
- cmark 0.31.0-2-g3337a30
Opportunity to improve output compatibility: md2html replaces an initial TAB with four spaces while cmark doesn't.
test subject:
expected output (cmark output)
actual output: (md2html output)
Versions tested: