Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
dtchanpura opened this issue Jan 4, 2019 · 3 comments

Comments

@dtchanpura
Copy link

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: fabiocolacio/Marker#218

@faywong
Copy link

faywong commented Apr 1, 2020

It's reasonable to support tasklists.

@smithfred
Copy link

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
Copy link

Feature still not implemented?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants