Markdown 段落
用法
要创建段落,请使用空白行将一行或多行文本进行分隔。
1 2 3
| I really like using Markdown.
I think I'll use it to format all of my documents from now on.
|
1 2 3
| <p>I really like using Markdown.</p>
<p>I think I'll use it to format all of my documents from now on.</p>
|
I really like using Markdown.
I think I’ll use it to format all of my documents from now on.
段落(Paragraph)用法的最佳实
不要用空格(spaces)或制表符( tabs)缩进段落。
正确做法
1 2 3
| Don't put tabs or spaces in front of your paragraphs.
Keep lines left-aligned like this.
|
错误做法
1 2 3
| This can result in unexpected formatting problems.
Don't add tabs or spaces in front of paragraphs.
|