Skip to content

Markdown enumerated lists are rendered wrong

First I would assume, that this renders correct:

1. This is a list with multiple
   paragraphs.

   here is the next paragraph

   - and here
   - follows
   - a bullet list

2. Second Item

3. Third Item

Rendered

  1. This is a list with multiple paragraphs.

    here is the next paragraph

    • and here
    • follows
    • a bullet list
  2. Second Item

  3. Third Item


Looking at the help there is something strange about the spaces: You have to use 4 spaces for indentation. So this should render correct:

1.  This is a list with multiple
    paragraphs.

    here is the next paragraph

    - and here
    - follows
    - a bullet list

2.  Second Item

3.  Third Item

Rendered

  1. This is a list with multiple paragraphs.

    here is the next paragraph

    • and here
    • follows
    • a bullet list
  2. Second Item

  3. Third Item