Markdown treats a single newline as a space, so that already wrapped text doesn’t need to be rewrapped. If you want to have each item on one line, some options:
Two spaces before newline
Foo << two spaces here
Bar
Yields
Foo
Bar
Backslash before newline
Foo\
Bar
Yields
Foo
Bar
Paragraph Break
Most clients will have a “larger” vertical space if you do this. Use a double newline:
I’ve noticed the slight increase in vertical space when I’ve used paragraph breaks in Markdown editors in the past and I thought it was some sort of rendering error. I feel like I’ve unlocked secret knowledge. Thanks for your post!
Markdown treats a single newline as a space, so that already wrapped text doesn’t need to be rewrapped. If you want to have each item on one line, some options:
Two spaces before newline
Yields
Backslash before newline
Yields
Paragraph Break
Most clients will have a “larger” vertical space if you do this. Use a double newline:
Yields
Bulleted List
Yields
I’ve noticed the slight increase in vertical space when I’ve used paragraph breaks in Markdown editors in the past and I thought it was some sort of rendering error. I feel like I’ve unlocked secret knowledge. Thanks for your post!