Metadata Syntax
Overview
Metadata tags are written inline in your task text. AutoMD parses them and displays structured data in the UI while keeping your markdown human-readable.
Tags reference
| Tag | Syntax | Example | Description |
|---|---|---|---|
| Assignee | @name | @alice | Assign a task to someone |
| Label | #label | #design | Categorize with a label |
| Priority | priority:level | priority:high | Set priority (high, medium, low) |
| Due date | due:date | due:friday | Set a deadline |
| Estimate | est:duration | est:4h | Estimate effort |
Assignees
Use @name anywhere in the task text:
- [ ] Design landing page @alice @bob
Multiple assignees are supported.
Labels
Use #label for categorization:
- [ ] Build auth module #backend #security
Priority
Three levels: high, medium, low:
- [ ] Fix login bug priority:high
Due dates
Supports natural language and ISO dates:
- [ ] Ship v1.0 due:friday
- [ ] Quarterly review due:2026-03-15
Estimates
Duration-based estimates:
- [ ] Write tests est:2h
- [ ] Refactor auth est:1d
Info
Additional metadata types and custom fields coming soon.