Nested numbered list indentation differs from bullet lists
Summary
Writing Markdown lists differs between bullets and numbered lists:
Steps to reproduce
The result of the following Markdown would produce unexpected results:
# Bullets
* this is parent
  * this is child 1
  * this is child 2
# Numbered (expected)
1. this is parent
  1. this is child 1
  1. this is child 2
# Numbered (current status)
1. this is parent
    1. this is child 1
    1. this is child 2Example Project
This bullet list worked, but this numbered one didn't.
What is the current bug behavior?
The following does not result the same as if there were bullets:
 1. this is parent
   1. this is child 1
   1. this is child 2What is the expected correct behavior?
The previous layout should be indented and formatted correctly, as the following one:
* this is parent
  * this is child 1
  * this is child 2