lowdown
lowdown copied to clipboard
switch back from inline html to markdown
# heading 1
paragraph 1
<blockquote>
# heading 2
paragraph 2
</blockquote>
lowdown --html-no-skiphtml --html-no-escapehtml test.md
expected result: same as with the github markdown parser
heading 1
paragraph 1
heading 2
paragraph 2
This is an interesting issue---I thought lowdown was doing the same as other systems, but pandoc shows me otherwise too. It seems that I inherited "strict" mode from Hoedown, which matches between blocks, whereas the existing parsers simply do one tag at a time. I'll look into this, thanks for reporting.