Kramdown renderers:
- Bullet List
1. With Ordered Item
as
<ul>
<li>Bullet List
<ol>
<li>With Ordered Item</li>
</ol>
</li>
</ul>
However, if there is a blank line between items it should parse as two lists:
- Bullet List
1. With Ordered Item
<ul>
<li>Bullet List</li>
</ul>
<ol>
<li>With Ordered Item</li>
</ol>
Kramdown renderers:
as
However, if there is a blank line between items it should parse as two lists: