Making a single line break in markdown

Cassidy Williams - Dec 10 '23 - - Dev Community

Sometimes when you write markdown, you'll write some paragraph...

and then you hit "Enter" twice to make another paragraph.

Like this...

...and then this.
Enter fullscreen mode Exit fullscreen mode

This will render:

<p>Like this...</p>
<p>...and then this.</p>
Enter fullscreen mode Exit fullscreen mode

But, sometimes you want to make a single line break, kind of like in HTML where you have:

<p>
Like this... <br />
...and then this.
</p>
Enter fullscreen mode Exit fullscreen mode

In markdown, you can just drop in a <br /> and it'll work perfectly fine. But, if you want to keep your markdown HTML-less, you can add a backslash \ after your line, like so!

Like this...\
...and then this.
Enter fullscreen mode Exit fullscreen mode

This is supported in most markdown processors, but not all of them. Definitely check on the one you're using before you push to prod. Some processors also allow you to add a double space at the end of a line as well (truly just , hit your spacebar twice), but since a lot of code editor setups trim empty spaces, I personally prefer the backslash way.

Have

fun!

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player