Reputation: 2749
Does Markdown support bullet list items on multiple lines (with newlines inside the item's source)? In HTML, I can put <br>
inside it.
UPDATED in Jan 2020
Thank you for your contribution. Two trailing spaces work in the Jupyter environment.
Upvotes: 117
Views: 68743
Reputation: 1179
Alternative to double trailing space you can add a trailing backslash.
* Item 1\
blah blah blah
* Item 2\
blah blah blah
rendered to
Upvotes: 82
Reputation: 23542
Summary of all answers.
Add trailing:
\
<br>
..
(did not work for me)
(some IDEs remove this)I like the \
best. It is also used in the Linux shell.
Upvotes: 5
Reputation: 2861
You may check out this.
* unordered list
+ sub-item 1
+ sub-item 2
- sub-sub-item 1
* unordered list
+ sub-item 1
+ sub-item 2
- sub-sub-item 1
Upvotes: 0
Reputation: 2132
Two spaces at the end of line are used to insert a line-break.
Example (replace the two dots with two spaces!):
* Item..
some indented text
This will render as:
Upvotes: 147
Reputation: 4186
A more markdown-friendly alternative (to accepted answer) is to add 2 trailing spaces to the first line.
Upvotes: 66