Steve Hoelzer
2006-Oct-17 13:29 UTC
Block quotes with a blank line between them get merged
Text:> number 1 > > letter B> last oneMarkdown output: <blockquote> <p>number 1</p> <p>letter B</p> <p>last one</p> </blockquote> Is this the intended behavior? I think there should be two separate block quote tags like this: <blockquote> <p>number 1</p> <p>letter B</p> </blockquote> <blockquote> <p>last one</p> </blockquote> Steve
"Steve Hoelzer" <shoelzer@gmail.com> wrote:> Text: > >> number 1 >> >> letter B > >> last one > > > Markdown output: > > <blockquote> > <p>number 1</p> > > <p>letter B</p> > > <p>last one</p> > </blockquote> > > > Is this the intended behavior? I think there should be two > separate block quote tags like this: > > <blockquote> > <p>number 1</p> > > <p>letter B</p> > </blockquote> > > <blockquote> > <p>last one</p> > </blockquote> > > > Steve >Even more, this:> number 1> letter B> last oneConverts to this: <blockquote> <p>number 1</p> <p>letter B</p> <p>last one</p> </blockquote> On the dingus anyway. max
Waylan Limberg
2006-Oct-18 09:19 UTC
Block quotes with a blank line between them get merged
For whatever it is worth, both perl and php have this behavior while python gives the expected output. I'd certainly say it is a bug. One could very easily have a legitimate need to have two separate quotes (perhaps from different sources) follow each other in a document. On 10/17/06, Steve Hoelzer <shoelzer@gmail.com> wrote:> Text: > > > number 1 > > > > letter B > > > last one > > > Markdown output: > > <blockquote> > <p>number 1</p> > > <p>letter B</p> > > <p>last one</p> > </blockquote> > > > Is this the intended behavior? I think there should be two separate > block quote tags like this: > > <blockquote> > <p>number 1</p> > > <p>letter B</p> > </blockquote> > > <blockquote> > <p>last one</p> > </blockquote> > > > Steve > _______________________________________________ > Markdown-Discuss mailing list > Markdown-Discuss@six.pairlist.net > http://six.pairlist.net/mailman/listinfo/markdown-discuss >-- ---- Waylan Limberg waylan@gmail.com