parsedown-extra icon indicating copy to clipboard operation
parsedown-extra copied to clipboard

Numeric Lists with Dashes.

Open GiantCowFilms opened this issue 9 years ago • 1 comments

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:

  1. First Item
  2. Second Item.
  • Sub Unordered list
  1. 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.

GiantCowFilms avatar Sep 17 '15 01:09 GiantCowFilms

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.

taufik-nurrohman avatar Mar 31 '16 13:03 taufik-nurrohman