Paragraphs
To create paragraphs, use blank lines to separate one or more lines of text.
Paragraph Syntax
Markdown Syntax | HTML Syntax | Rendered Output |
---|---|---|
I really like using Markdown. | <p>This is the first line</p> | This is the first line |
I think I'll use it to format all of my documents from now on. | <p>This is the second line</p> | This is the second line |
Best Practices for Paragraph Syntax
Don't indent paragraphs with spaces or tabs.
Do this | Don't do this |
---|---|
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. |