Reply to thread

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

[/CODE]

  • Item 1
  • Item 2

   * Item 2a

   * Item 2b


[CODE]1. Item 1

2. Item 2

3. Item 3

   * Item 3a

   * Item 3b

[/CODE]

1. Item 1

2. Item 2

3. Item 3

   * Item 3a

   * Item 3b


Back
Top Bottom