Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
Comments on Why do quotation boxes split themselves?
Parent
Why do quotation boxes split themselves?
+2
−0
This snag doesn't happen on Stack Exchange. Each time I use >
, the quotation box severs itself. How can I combine the quotation boxes? I screenshot https://math.codidact.com/posts/282889.
Post
+3
−3
You can try as Moshi said. Even, you can try following line either.
> paragraph <br/> Hello
It works like this.
paragraph
Hello
This snag doesn't happen on Stack Exchange.
No! It also happens in SE.
If you only want to use HTML than, you can use following code.
<blockquote>
<p>first paragraph</p>
<p>second paragraph</p>
</blockquote>
Here how it looks like.
first paragraph
second paragraph
0 comment threads