Open p11h opened 7 years ago
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>
<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:
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?
When exporting to HTML, the
<pre>
and<code>
tags for fenced code blocks are separated, and the<code>
tag indented on a new line.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:
The HTML to Clipboard produces the expected HTML:
And the desired result: