But no matter what happens after it, if you drop immediately to the third tier, it doesn't render correctly.
Input
* A
* B
* C
* C
Output
<ul>
<li>A * B * C * C</li>
</ul>
Note that I am using four spaces for tabs and dash - for the bullet in these examples. The results are reproducible if you use * for bullets. If you use two spaces or tab characters however, it renders correctly.
So if I embed a list within a list I get the expected result:
Input
Output
But if I dive down to a third level immediately, Maruku gets confused:
Input
Output
If you have at least one other bullet before the third it still renders correctly
Input
Output
But no matter what happens after it, if you drop immediately to the third tier, it doesn't render correctly.
Input
Output
Note that I am using four spaces for tabs and dash
-
for the bullet in these examples. The results are reproducible if you use*
for bullets. If you use two spaces or tab characters however, it renders correctly.