Philip Newton wrote:
On Fri, 02 Jul 2004 03:29:58 +0100, Timwi timwi@gmx.net wrote:
I'm pretty sure it is invalid HTML to put a UL directly inside a UL without an LI in between.
That is my understanding, too.
We went through this question a couple years ago and, yes, that's illegal. The correct way to nest is like this:
* Item ** Subitem
<ul> <li> Item <ul> <li>Subitem</li> </ul> </li> </ul>
Obviously this isn't very forgiving to skipping levels.
-- brion vibber (brion @ pobox.com)