Accordly to kramdown documentation the syntax for nested unordered lists (and also the result) is the following.
1. 1st item
2. 2nd item
1. 1st sub-item of 2nd item
2. 2nd sub-item of 2nd item
3. 3rd item
1. 1st sub-item of 3rd item
2. 2nd sub-item of 3rd item
Is it possible to achieve something like this instead?
1. 1st item
2. 2nd item
2.1. 1st sub-item of 2nd item
2.2. 2nd sub-item of 2nd item
3. 3rd item
3.1. 1st sub-item of 3rd item
3.2. 2nd sub-item of 3rd item
Note: I have to use kramdown, I cannot change it in favor of other markdown parsers.