mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
776 stars 146 forks source link

Consequtive lists without a blank line #25

Closed mity closed 6 years ago

mity commented 7 years ago
100. foo
    * bar

is transformed into

<ol start="100"><li>foo
* bar</li>
</ol>

But it should be

<ol start="100"><li>foo</li>
</ol>
<ul>
<li>bar</li>
</ul>

(Interestingly, lower or larger indentation of the 2nd list works correctly.)

mity commented 6 years ago

Not sure anymore it is really a bug on our side. I raised commonmark/CommonMark#497 to determine how it should really behave.

mity commented 6 years ago

Feedback for commonmark/CommonMark#497 seems to confirm MD4C's point of view, so closing the bug as invalid. We may reopen if anything changes.