Known list nesting bug in 1.0.1

A. Pagaltzis pagaltzis at gmx.de
Mon Jul 11 16:55:56 EDT 2005


* A. Pagaltzis <pagaltzis at gmx.de> [2005-07-11 22:47]:

> Since the Dingus does not have this problem, it is obviously

> known and even fixed.


Ah, but working around it, I found a problem the Dingus does
still have.

This:

* Foo

<ul>
<li>Bar</li>
<li>Baz</li>
<li>Quux</li></ul>

Blech

Works:

<ul>
<li><p>Foo</p>

<ul>
<li>Bar</li>
<li>Baz</li>
<li>Quux</li></ul>

<p>Blech</p></li>
</ul>

But this:

* Foo

<ul>
<li>Bar</li>
<li>Baz</li>
<li>Quux</li>
</ul>

Blech

Still fails:

<ul>
<li><p>Foo</p>

<ul>
<li>Bar</li>
<li>Baz</li>
<li>Quux</li>
</ul>

<p><p>Blech</p></li>
</ul></p>

The dreaded superfluous opening paragraph tag is back.

Ok, so it’s not the end of the world, since the bug can be
avoided. But the underlying list nesting bug is still annoying
enough, as I need to write HTML to work around it.

Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>


More information about the Markdown-Discuss mailing list