On 6/8/06, Michel Fortin <[EMAIL PROTECTED]> wrote:
Interestingly, PHP Markdown Extra kinda "solves" your problem by *not* making a blockquote inside the list, which I think is the expected behaviour when the list item doesn't contain any paragraph.
I just checked the python implementation and it appears to be the same. You do not get a blockquote at all unless there is a line between the list item and the blockquote. Like this: ... - Item 3 contains a blockquote: > quote line1 > quote line2 ... I tested that in perl and it seems to work corectly there as well. The blockquote is part of the list item and ends before the next heading. As an aside, python requires at least 4 spaces of indent, while perl requires only 1. I also noted that python wraps all the list items in <p> tags while perl only wrapped item 3. Apparently the python implementation looks ahead and if any one item in the list is wrapped in a <p> then all of them are. -- ---- Waylan Limberg [EMAIL PROTECTED] _______________________________________________ Markdown-Discuss mailing list [email protected] http://six.pairlist.net/mailman/listinfo/markdown-discuss
