I am trying to get a round-trip markup->html->markup and am having a
strange issue with bulleted lists.

This markup:

* LEVEL 1
*** LEVEL 3

(note the movement from a single * to 3 *s without an intermediate 2
*s) results in this HTML:

<ul><li>LEVEL 1
<dl><dd><ul><li>LEVEL 3
</li></ul></dd></dl></li></ul>

when I expected this HTML:

<ul><li>LEVEL 1
<ul><ul><li>LEVEL 3
</li></ul></ul></li></ul>

Is this intentional?  Or is it a bug?

-Peter

_______________________________________________
pmwiki-devel mailing list
pmwiki-devel@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-devel

Reply via email to