96

Does markdown supports multi-line (line-break inside the item) bullet list? In HTML, I can put <br> inside it.

  • Item 1
    blah blah blah
  • Item 2
    blah blah blah

UPDATED in Jan 2020

Thank you for your contribution. Two trailing spaces work in the Jupyter environment.

SUNDONG
  • 2,501
  • 5
  • 21
  • 37

5 Answers5

120

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:

  • Item
    some indented text
Andrej Debenjak
  • 1,774
  • 1
  • 15
  • 10
  • 1
    For those with auto whitespace trimming turned on (which I believe is very useful), consider using the trailing backslash solution mentioned in other answers. – Marcos Pereira Feb 12 '23 at 13:29
60

A more markdown-friendly alternative (to accepted answer) is to add 2 trailing spaces to the first line.

Alexander Tsepkov
  • 3,946
  • 3
  • 35
  • 59
55

Alternative to double trailing space you can add a trailing backslash.

* Item 1\
blah blah blah
* Item 2\
blah blah blah

rendered to

* Item 1
  blah blah blah
* Item 2
  blah blah blah
Kotodid
  • 879
  • 6
  • 18
5

Oh I just checked <br> also works in markdown too...

SUNDONG
  • 2,501
  • 5
  • 21
  • 37
0

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   
Seyma Kalay
  • 2,037
  • 10
  • 22