cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm leaflet readability golang
at main 33 lines 572 B view raw view rendered
1--- 2title: Task Queries and Filtering 3sidebar_label: Queries 4description: Compose filters for precise task lists and reports. 5sidebar_position: 7 6--- 7 8# Task Queries and Filtering 9 10Combine filters for precise task lists: 11 12**High priority work tasks due this week**: 13 14```sh 15noteleaf task list \ 16 --project work \ 17 --priority high \ 18 --status pending 19``` 20 21**All completed tasks from specific project**: 22 23```sh 24noteleaf task list \ 25 --project side-project \ 26 --status completed 27``` 28 29**Quick wins** (tasks tagged as quick): 30 31```sh 32noteleaf task list --tags quick-win 33```