Mimic a newline in Markdown
In some markdown flavors, you may end the line with two or more spaces which will produce a newline.
Per the Markdown documentation:
When you do want to insert a
<br />
break tag using Markdown, you end a line with two or more spaces, then type return.
One \nTwo \nThree \nFour
Will then render into four separate lines.
Note that between each entry and newline, there are two spaces.