mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
ed4c33fe4e
When option was enabled, `<br />` tags where being added wrongfully between `<li>` tags, which resulted in malformed html. This commit prevents this behavior. Closes #316
10 lines
119 B
HTML
10 lines
119 B
HTML
<ul>
|
|
<li>foo<ul>
|
|
<li>bar</li></ul></li>
|
|
</ul>
|
|
<p>...</p>
|
|
<ul>
|
|
<li>baz<ol>
|
|
<li>bazinga</li></ol></li>
|
|
</ul>
|