From this stack overflow question.
Input
<pre>
line1 <br> line2
</pre>
command - pandoc -f html -t native
output
[CodeBlock ("",[],[]) "line1 line2"]
expected
[CodeBlock ("", [], []) "line1\nline2"]
Fix: Modify the pCodeBlock function in the HTML Reader.
From this stack overflow question.
Input
command -
pandoc -f html -t nativeoutput
expected
Fix: Modify the
pCodeBlockfunction in the HTML Reader.