Markdownチュートリアル

改行

行の末尾に2つ以上のスペースを追加してからEnterキーを押すと、改行(<br>)を作成できます。

改行構文

Markdown 構文HTML 構文レンダリング結果
This is the first line.
This is the second line.
<p>This is the first line.<br/>This is the second line.</p>This is the first line.
This is the second line.

改行構文のベストプラクティス

ほとんどのMarkdownプログラムは2つ以上のスペースによる改行をサポートしており、これは末尾の空白(trailing whitespace)と呼ばれます。
しかし、エディターではスペースが見えにくく、多くの人が意図的または無意識にスペースを追加してしまいます。この理由から、別のアプローチを取ることもあります
別の改行方法として、HTMLのbrタグを使用することができます。

✅ 正しい例❌ 間違った例
This is the first line.
This is the second line.
This is the first line. This is the second line.
This is the first line.
This is the second line.
This is the first line. This is the second line.