question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Add support for GFM-style checkbox task list

See original GitHub issue

This is from a Google Group post.

Github supports an extension to Markdown for creating checkbox task lists. This MD:

- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> are supported
- [x] list syntax is required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item

Turns into this:

  • @mentions, #refs, links, formatting, and <del>tags</del> are supported
  • list syntax is required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

In case this isn’t obvious: An important aspect of the Github feature that won’t (and can’t) be supported is the the updating of the email (etc.) if the checkboxes are clicked. This makes sense for GH issues, not for email.

Issue Analytics

  • State:open
  • Created 9 years ago
  • Reactions:13
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

2reactions
chabad360commented, Jan 6, 2016

Would be sooooo appreciated! 👍

0reactions
stephen147commented, Mar 18, 2020

You can paste this into the raw text:

<input type="checkbox" class="task-list-item-checkbox" disabled checked>Test line 1
<input type="checkbox" class="task-list-item-checkbox" disabled>Test line 2

It displays like so when converted:

image

Now, to find a way to change: - [] to <input type="checkbox" class="task-list-item-checkbox" disabled checked>

and

- [x] to <input type="checkbox" class="task-list-item-checkbox" disabled>

This does seem to be possible by wrapping html in the css code as per this: https://www.quora.com/How-do-I-write-CSS-within-HTML https://www.w3schools.com/html/html_css.asp

Same link to where the checkbox code is: http://blog.winddweb.com/implement-github-like-checkbox

Read more comments on GitHub >

github_iconTop Results From Across the Web

Feature request: Checkboxes in Markdown - Feedback
It would be fantastic to have support for GFM-style checkboxes in Markdown syntax; that is, the ability to add a checklist to a...
Read more >
Use task checklists in Microsoft Project for the web
To add a checklist ... Select the task to bring up its details, then select More > Open details > Add an item...
Read more >
Tasklist - PyMdown Extensions Documentation
The Tasklist extension adds GFM style task lists. ... <ul class="task-list"> <li class="task-list-item"> <input type="checkbox" disabled="" ...
Read more >
Insert checkbox in Excel: create interactive checklist or to-do list
See how to insert a checkbox in Excel and use the check box results in formulas to make an interactive checklist, to-do list, ......
Read more >
Add checkboxes to spreadsheets - Google Support
Check off items in a to-do list; Track project tasks; Take attendance ... In your spreadsheet, select the cells where you want to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found