Markdown Task List Progress Calculator
CodeParse a Markdown document's checkbox task list and report completion percentage overall and per section, grouped by the nearest preceding heading
Paste a Markdown document and get back completion stats for every `- [ ]`/`- [x]` checkbox in it: total items, completed items, and a percentage, both overall and broken down per section. A section is defined as the nearest preceding heading of any level, so a README with multiple `##` phases gets a separate progress bar for each one instead of a single flat number. This fills a real gap in the site's Markdown tooling: the existing Table of Contents Generator and Front Matter Parser don't touch task lists at all, and this is a common need for tracking a README-driven project plan or a PR checklist without opening the file in an editor that renders checkboxes.
How to use Markdown Task List Progress Calculator
- 1.Paste a Markdown document containing `- [ ]` or `- [x]` style task list items.
- 2.Read the overall total, completed count, and percentage at the top.
- 3.Check the per-section breakdown to see progress under each heading separately, useful for a multi-phase project plan.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/markdown-task-list-progress \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"markdown":"# Phase 1\n- [x] a\n## Phase 2\n- [ ] b\n- [x] c\n"}'Get an API key from your dashboard · Full API docs →