parsedown-extra
parsedown-extra copied to clipboard
Numeric Lists with Dashes.
I suggest we add support for using dashes to continue a numeric/ordered list.
the syntax would look like this:
1. First Item
- Second Item.
- Sub Unordered list
- Third item
and would compile to this:
- First Item
- Second Item.
- Sub Unordered list
- Third item
This is standard to github flavored markdown, try coping the raw markdown into a markdown supported textbox here on github and you will see it will work.
This would be faster to type but the raw code will no longer readable, out of the original Markdown principle that, the source code syntax must be easy and comfortable to be read by humans.