Block quotes with a blank line between them get merged
Steve Hoelzer
shoelzer at gmail.com
Tue Oct 17 13:29:07 EDT 2006
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
More information about the Markdown-Discuss
mailing list