Rosey / markdown-draft-js

A tool to convert content created in DraftJS to markdown and vice versa.
https://rosey.github.io/markdown-draft-js/
MIT License
318 stars 69 forks source link

Update draft-to-markdown ordered list conversion to use right numbers #78

Closed Rosey closed 6 years ago

Rosey commented 6 years ago

This wasn’t a huge priority for me to start with because most markdown parsers seem to handle this for you anyway, but in the interest of fixing what seems like a weird behaviour, I have fixed it.

Now, draft-to-markdown ordered lists no longer do:

  1. Item one
  2. Item two
  3. Item three

They do

  1. Item one
  2. Item two
  3. Item three

... and all is happy in the world :)