We didn't intend to support the HTML in question.....
------------------------------------------------------------------------------
</ul
<h3>Daniel LaLiberte</h3>
------------------------------------------------------------------------------
The Mosaic parser is simply looking at this like so:
</ul <h3>
The second < is disregarded since it's looking for a > to close the
tag; the h3 (or possibly <h3; I'm not sure which exactly) is
considered an attribute of the /ul tag; the result is that it's saying
"OK, the list is closed and I'm ignoring this extra 'h3' attribute
that I don't understand".
This is just the way our parser works -- not our way of supporting bad
HTML.
Marc