sstur / react-rte

Pure React rich text WYSIWYG editor based on draft-js.
https://react-rte.org
ISC License
2.86k stars 430 forks source link

Support for GFM style TaskLists #361

Open InternetJohnny opened 4 years ago

InternetJohnny commented 4 years ago

Github Flavored Markdown allows you to add checkboxes in unordered lists, using this syntax:

- [ ] item 1
- [x] item 2

Which results in:

I would love to fork the project and implement this myself, is there documentation on how to add custom formatting? Seems like it could be tricky, since it would involve parsing only unordered lists with the square brackets.