mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
10b3410934
This input: `- - - a` causes trouble for the parser, since it interprets it as multiple sublists, where it should only interpert it as a list with a single list item. This commit fixes this behavior. Closes #312
9 lines
130 B
HTML
9 lines
130 B
HTML
<ul>
|
|
<li><p>- - a</p></li>
|
|
<li><p>- * - - + a</p></li>
|
|
</ul>
|
|
<ol>
|
|
<li><p>2. 3. 4. 5.</p></li>
|
|
<li><p>2. 3. 4. 5. a</p></li>
|
|
</ol>
|