Markdown 段落#
段落を作成するには、空白行を使用して 1 行または複数行のテキストを区切ります。
Markdown 語法 | HTML | プレビュー効果 |
---|---|---|
I really like using Markdown. | <p>I really like using Markdown.</p> | I really like using Markdown. |
I think I'll use it to format all of my documents from now on. | <p>I think I'll use it to format all of my documents from now on.</p> | I think I'll use it to format all of my documents from now on. |
段落(Paragraph)用法のベストプラクティス#
段落をインデントするために空白(spaces)やタブ(tabs)を使用しないでください。
✅ これを行う | ❌ これを行わない |
---|---|
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. |