facelessuser / MarkdownPreview

Markdown preview and build plugin for Sublime Text https://facelessuser.github.io/MarkdownPreview/
Other
402 stars 53 forks source link

How to use nested lists without calling github API? #141

Closed jfcherng closed 2 years ago

jfcherng commented 2 years ago

I think this is frequently used but no one asked before... I must miss something.

* parent
  * child

However, the markdown parser seems to ignore the indentation and generates a flatten list.

facelessuser commented 2 years ago

Python Markdown requires 4 spaces for nested lists.

jfcherng commented 2 years ago

Python Markdown requires 4 spaces for nested lists.

This is it. Thanks :D