As designed Markdown: Nested lists are not supported

Steffen

Well-known member
Affected version
2.1.0
It seems like nested lists as shown in the GitHub Markdown Cheat Sheet don't work in XenForo (no matter whether you indent them with 2, 3, or 4 spaces). Nested lists don't seem to be GitHub specific: CommonMark Nested Lists.

Code:
* Item 1
* Item 2
   * Item 2a
   * Item 2b
  • Item 1
  • Item 2
* Item 2a
* Item 2b

Code:
1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b
1. Item 1
2. Item 2
3. Item 3
* Item 3a
* Item 3b
 
Top Bottom