I use markdown for my notes and todo lists (e.g. in boostnote) and I'm using the below code to do the check-boxes for the ToDos
- [ ] unchecked item
- [x] checked item
Is there a way to mark an item as not checked but irrelevant/failed?
e.g. the goal is not achieved but it's not needed anymore.
Just not checking could mean it was just forgotten, checking it implies it was done, and deleting it looks like it was never considered.
Currently I use this solution
- [ ] ~~failed item~~
but it's a little cumbersome since it requires to add characters before and after the item. And the status of the item is less obvious in raw/code view.
Is there something like this? That renders the item crossed or grayed out. I couldn't find anything.
- [-] failed item