Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Creating Checklists in Markdown

2024-09-03

Short version

To create checklists in Markdown, use the following syntax:

-   [ ] Task 1
-   [x] Completed Task
  • Task 1
  • Completed Task

Long version

Introduction

Checklists are a great way to track tasks within Markdown documents. Below is a guide on how to create them.

Example Checklist Format

  • Use square brackets to represent checkboxes:
    • An unchecked box: [ ]
    • A checked box: [x]

Example Code

- [ ] Write the introduction
- [x] Draft the body
- [ ] Revise the conclusion

Conclusion

Creating checklists in Markdown is straightforward and helps in organizing tasks effectively.