Markdown is a simple and intuitive way to format text, that is used by many professionals for writing documentation, creating web pages in HTML, and taking notes. It is popular among developers, writers, and students for its simplicity and versatility. Adding a new line in Markdown allows you to improve readability and organise your text, so your information can be better read.
We use Markdown in our note-taking app, Supernotes, to help users format their notes efficiently. If you are interested in a note-taking app that supports Markdown, check out Supernotes.
This guide will show you how to properly add new lines following the Markdown formatting syntax.
To create a line break (new line) in Markdown, you need to insert two spaces at the end of a line and then press the Enter
key. Here’s how you do it:
This is the first line.(space)(space)
This is the second line.
Rendered output:
This is the first line.
This is the second line.
If you need multiple line breaks, you can simply repeat the process of adding two spaces and pressing Enter
. Each pair of spaces and Enter
will create a new line.
This is the first line.
This is the second line.
This is the third line with an extra break above.
Rendered output:
This is the first line.
This is the second line.
This is the third line with an extra break above.
For a full paragraph break, just add one or more blank lines between paragraphs. Markdown automatically treats blank lines as paragraph separators.
This is the first paragraph.
This is the second paragraph.
Rendered output:
This is the first paragraph.
This is the second paragraph.
You can also use HTML tags to create line breaks in Markdown. This is particularly useful if you want to ensure your formatting is preserved across different Markdown processors.
<br>
TagTo add a single line break, use the <br>
tag:
This is the first line.<br>
This is the second line.
Rendered output:
This is the first line.
This is the second line.
<p>
TagTo create a paragraph break, you can use the <p>
tag:
<p>This is the first paragraph.</p>
<p>This is the second paragraph.</p>
Rendered output:
This is the first paragraph.
This is the second paragraph.
If you enjoy using Markdown for note-taking and want a tool that enhances your experience, consider downloading Supernotes. Supernotes is a new note-taking app that supports Markdown, offering many features to boost your productivity while staying true to your note-taking style. Whether you need to jot down quick notes, manage detailed lists, or collaborate with others, Supernotes has you completely covered.
Give Supernotes a try, 99% of our features are free!