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.
Why do quotation boxes split themselves?
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.
2 answers
Connect them with >
>first paragraph
>
>second paragraph
first paragraph
second paragraph
If you split them, the quotations will be split
>first quotation
>second quotation
first quotation
second quotation
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