Add Work in Progress Checkbox
Proposal
Currently 2 types of checkboxes are supported:
[ ]: Unchecked[x]: Checked
Support a third type of checkbox: [-] for Work in Progress / Partially Done. It would be especially helpful when maintaining a task list in a Markdown file.
This can be implemented by setting .indeterminate property in JavaScript:
let checkbox = document.getElementById('my-checkbox');
checkbox.indeterminate = true;
@yzhang-gh What do you think about this feature request? I would like to make a Pull Request for this - can you please confirm that you would be interested in such a PR?
@yzhang-gh Please respond & confirm whether you would be interested in merging a PR to implement this.
@yzhang-gh Please respond.
Closing due to lack of response
I was hoping they'd do this in GFM too