2

I want to create a list like that.

 - one
 - two
  1. sub-one
  2. sub-two
     1. sub-sub-one
     2. sub-sub-two

But markdown (on GitHub) use i, ii, ... and for the sub-list and a, b, c, ... for the sub-sub-list.

How can I modify this behaviour with that markdown-code.

  # one
  # two
    1) sub-one
    2) sub-two   
     1) sub-sub-one
     2) sub-sub-two
buhtz
  • 10,774
  • 18
  • 76
  • 149
  • 3
    Possible duplicate of [How do you make lettered lists using markdown?](http://stackoverflow.com/questions/13366820/how-do-you-make-lettered-lists-using-markdown) – Waylan Oct 14 '15 at 15:08

1 Answers1

1

Markdown itself can not do that.

But some workarounds can be found in the duplicate question How do you make lettered lists using markdown?.

buhtz
  • 10,774
  • 18
  • 76
  • 149