Task lists #
Task lists allow you to create a list of items with checkboxes that you can check or uncheck.
Example of a task list #
- Here’s a task that hasn’t been done
- Here’s a subtask that has been done, indented
- Here’s a subtask that hasn’t been done.
- Finally, an item, unidented.
Representation in Markdown #
- [ ] Here’s a task that hasn’t been done
- [x] Here’s a subtask that has been done, indented
- [ ] Here’s a subtask that hasn’t been done.
- [ ] Finally, an item, unidented.
100%