MarkdownViewerPlusPlus
MarkdownViewerPlusPlus copied to clipboard
Fenced code blocks
When exporting to HTML, the <pre>
and <code>
tags for fenced code blocks are separated, and the <code>
tag indented on a new line.
<pre>
<code>aaa
...
</code>
</pre>
Something like the above occurs, and as a result the first line of code is preceded by whitespace, and an extra line is included at the end:
aaa
...
The HTML to Clipboard produces the expected HTML:
<pre><code>aaa
...
</code></pre>
And the desired result:
aaa
...
Hey @stezmi
Uh, ok. Yeah, I do some pre-processing I probably shouldn't do if the clipboard output is correct ^^'
Will check on that.
Thanks
What's the status on this one?