mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
9cfe8b1412
Nested ul and ol lists behave inconsistently in the requirement of having 3 spaces to be considered a nested list. This fix changes the requirement to only one space in both cases. Closes #299
21 lines
222 B
HTML
21 lines
222 B
HTML
<ul>
|
|
<li>one</li>
|
|
</ul>
|
|
<ol>
|
|
<li>two</li>
|
|
</ol>
|
|
<p>foo</p>
|
|
<ul>
|
|
<li>one
|
|
|
|
<ol>
|
|
<li>two</li></ol></li>
|
|
</ul>
|
|
<p>foo</p>
|
|
<ul>
|
|
<li>one
|
|
|
|
<ul>
|
|
<li>two</li></ul></li>
|
|
</ul>
|