-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Description
I would like to have nested lists. I cannot get them to work. I tried various "styles" (e.g., 2 spaces, 4 spaces). See example below.
Example
Markdown input
* Fruit
* Apple
* Orange
* Milk
* Cheese
Expected output
<ul>
<li>Fruit
<ul>
<li>Apple</li>
<li>Orange</li>
</ul>
</li>
<li>Milk
<ul>
<li>Cheese</li>
</ul>
</li>
</ul>
Actual output
<ul>
<li>Fruit</li>
</ul>
<em> Apple</em>
Orange
<ul>
<li>Milk</li>
</ul>
<em> Cheese</em>
Context
snarkdown 2.0.0
Metadata
Metadata
Assignees
Labels
No labels