Create a new line in markdown
To create a new line in Markdown, you can use two spaces at the end of a line, followed by a blank line. This is known as a "soft return" or "line break".
Here's an example:
This is the first line of text.
This is the second line of text.
Alternatively, you can use a blank line to create a new paragraph. This is known as a "hard return" or "paragraph break".
Here's an example:
This is the first paragraph of text.
This is the second paragraph of text.
Note that Markdown does not support HTML line breaks (<br>
), so you cannot use those to create new lines.