Topic: Nested list parsing bug?
The following which is a valid html chunk (as far as I can tell) does not make it through htmLawed in the default settings on the test page correctly.
<ul>
<li>blah
<ul>
<li>bleh
</ul>
<li>zip
</ul>Instead you get out
<ul>
<li>blah
<ul>
<li>bleh
</li></ul>
zip
</li></ul>With the final bullet point wrapped inside the same <li></li> as the first bullet (which is not the intent)