段落
段落を作成するには、空白行を使用して1行または複数行のテキストを区切ります。
段落構文
Markdown 構文 | HTML 構文 | レンダリング結果 |
---|---|---|
I really like using Markdown. | <p>これは最初の行です</p> | これは最初の行です |
I think I'll use it to format all of my documents from now on. | <p>これは2行目です</p> | これは2行目です |
段落構文のベストプラクティス
段落の前にスペースやタブでインデントしないでください。
正しい例 | 間違った例 |
---|---|
Don't put tabs or spaces in front of your paragraphs. | This can result in unexpected formatting problems. |
Keep lines left-aligned like this. | Don't add tabs or spaces in front of paragraphs. |