The following markdown syntax will be rendered as a Task List:
- [ ] This task is incomplete.
- [x] This task is completed.
Simply click on the checkbox of a task list, or —
Select menu items under Paragraph
→ Task Status
;
Follow the Custom Key Binding instructions to assign shortcut keys as needed.
You may want to add a strikethrough on completed tasks automatically like this:
This can be achieved by adding the following Custom CSS:
.task-list-done {
/* styles for completed tasks */
text-decoration: line-through;
}
.task-list-not-done {
/* styles for incomplete tasks */
}
If you want a completed task list to display with less contrast, you can add CSS in the format color: #777
to change the text color for selector .task-list-done
.
For details on where to put this CSS, please read Add Custom CSS.