Skip to content

Markdown list formatting

For MkDocs (and other markdown parses presumably) to correctly parse lists in markdown, it appears that you need to have an empty line before the list.

No empty line

This renders fine in Obsidian but won't render correctly when parsed by MkDocs
- An
- Unordered
- List

This renders fine in Obsidian but won't render correctly when parsed by MkDocs - An - Unordered - List

Empty line

This should render correctly

- An
- Unordered
- List

This should render correctly

  • An
  • Unordered
  • List