Multiple blockquotes are getting merged
royduin opened this issue · 2 comments
royduin commented
> Blockquote 1
> Blockquote 2
Results in:
<blockquote>
<p>Blockquote 1</p>
<p>Blockquote 2</p>
</blockquote>
Instead of:
<blockquote>
<p>Blockquote 1</p>
</blockquote>
<blockquote>
<p>Blockquote 2</p>
</blockquote>
LukeTowers commented
Also seeing this in @wintercms.
You can force two blockquotes to be rendered with the following:
>test
<span></span>
>test
userofit123 commented
Is there an actual fix for this though?
Edi: this actually does not work for me, i see in the actual content.
Edit 2: Realized i didnt have the latest beta version in which this has been fixed.
Though, there still is an issue of having to use html_entity_decode to convert the block quotes into actual elements.