Back to cheat sheet

Line break

End a line with two spaces or a backslash (\) to force a line break.

Markdown
First line  
Second line
Preview

First line
Second line

HTML output
<p>First line<br>
Second line</p>

Tip — To fully split paragraphs, leave one blank line.

Open in converter