Author: JoostMeerten
Description:
Within <blockquote>, paragraph breaks are not respected and all text is output
as a single paragraph instead. This makes it practically mandatory to break them
up and use the : syntax for indenting, losing the semantic info that a single
quote is presented.
For example,
<blockquote> Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. </blockquote>
Outputs:
<blockquote> <p>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</p> </blockquote>
Rather than:
<blockquote> <p>Lorem ipsum dolor sit amet.</p> <p>Lorem ipsum dolor sit amet.</p> </blockquote>
Paragraph tags can be added manually, but this should not be necessary.
Version: 1.4.x
Severity: normal
See Also: T53086