showdown/test/features/disableForced4SpacesIndentedSublists.html
Estevao Soares dos Santos ed4c33fe4e fix(simpleLineBreaks): fix simpleLineBreak option breaking lists html
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
2016-12-20 23:57:10 +00:00

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>