scidown icon indicating copy to clipboard operation
scidown copied to clipboard

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

Open dtchanpura opened this issue 6 years ago • 3 comments

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

dtchanpura avatar Jan 04 '19 18:01 dtchanpura

It's reasonable to support tasklists.

faywong avatar Apr 01 '20 14:04 faywong

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).

smithfred avatar Jun 18 '20 19:06 smithfred

Feature still not implemented?

000exploit avatar Feb 12 '22 08:02 000exploit