Page MenuHomePhabricator

Paragraphs are stripped inside of blockquotes
Closed, ResolvedPublic

Description

Author: ui2t5v002

Description:
To indicate a blockquote, you surround it by <blockquote>tags</blockquote>.
Fine. But it doesn't allow multiple paragraphs:

<blockquote>
First paragraph is here.

Second paragraph is here.
</blockquote>

(wikitext)

This should behave the same way as blank lines outside of blockquotes, and be
rendered in the final page output as:

<blockquote>
<p>First paragraph is here.</p>

<p>Second paragraph is here.</p>
</blockquote>

(HTML)

But the software currently smooshes everything together in the final rendering:

<blockquote>
<p>First paragraph is here. Second paragraph is here.</p>
</blockquote>

(HTML)


Version: unspecified
Severity: normal
OS: Windows XP
Platform: PC

Details

Reference
bz7060

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:25 PM
bzimport added a project: MediaWiki-Parser.
bzimport set Reference to bz7060.
bzimport added a subscriber: Unknown Object (MLST).

robchur wrote:

*** This bug has been marked as a duplicate of 6200 ***