Mandarancio / scidown

SciDown processing library in C
https://github.com/Mandarancio/scidown/wiki
ISC License
52 stars 12 forks source link

Add feature to have checkboxes or tasklists as in GitHub flavored Markdown #7

Open dtchanpura opened 5 years ago

dtchanpura commented 5 years ago

GitHub markdown supports creation of checkboxes by writing [ ] (space inside square brackets) and selected checkbox by [x] (x inside square brackets)

Just like as follows

- [ ] not selected
- [x] selected

So in case when converted to HTML it should be something like ...

<ul>
<li><input type="checkbox">not selected</li>
<li><input type="checkbox" checked>selected</li>
</ul>

Reference: https://blog.github.com/2014-04-28-task-lists-in-all-markdown-documents/ Reference: https://github.com/fabiocolacio/Marker/issues/218

faywong commented 4 years ago

It's reasonable to support tasklists.

smithfred commented 4 years ago

Would be better to support the full set of GFM extensions if possible, since it's a widely used set of extensions (and is fully specified against CommonMark).

000exploit commented 2 years ago

Feature still not implemented?