Text edition jump more line

Hello,

Stupid question so I can’t find the solution…

How can I put more spaces than a single line break in the post editor?

I’ve had a look at the Markdown tutorial, but still nothing.

I would like more space between two paragraph.

Can you please help me?

hi @Wil34 you can use the line break html code <br> like this

here is some text
<br><br><br>
here is more text

which produces this:

here is some text




here is more text

or the commonmark \ in similar way:

here is some text
\
\
\
here is more text

to give this:

here is some text



here is more text

It’s perfect !

Thanks ser