テキスト編集で改行を増やす

こんにちは。

くだらない質問ですみません、解決策が見つかりません…

投稿エディタで、1つの改行以上のスペースを入れるにはどうすればよいですか?

Markdownチュートリアルを見ましたが、何も見つかりませんでした。

2つの段落の間に、もっとスペースを入れたいです。

助けていただけますか?

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

完璧です!

ありがとう、ser