Put a Deckard query in a deckard code fence to keep a live list inside a note. Deckard: Insert Query Block… writes one at the cursor from a saved or recent search, and Copy as live query block in a search page’s or the Task Board’s Export copies the page’s search as one:
```deckard sort=updated limit=10
tag = #project/atlas AND task = open
```
Or as a table of the tasks, with the columns you name:
```deckard view=table columns=due,priority,for sort=due
tag = #project/atlas AND is:open
```

markdown.preview.openMarkdownLinks decides whether it opens in the preview or the editor.deckard, sort= reorders the results by any column a task has — title, due, scheduled, start, done, priority, for, status, note, created, or updated — with dir=asc or dir=desc to say which way; dates sort newest first unless told otherwise, and a task with nothing in the column comes last either way. Notes know only title, created, and updated. limit=10 shows at most ten notes and ten tasks, while the header still reports the full totals.view=table draws the tasks as a table instead of a list, with columns=due,priority,for,note choosing the columns in order; the title is always first. The columns are the ones sort= accepts, plus tags, blocked (what a task waits for), and id. Without columns=, a table shows the title, due date, priority, who it is for, and its note. Notes stay a list above the table.The fence is ordinary Markdown, so other editors and Git show the query text itself. Like any fenced code, a query block is not indexed, so tags written in a query are not counted as tag uses. Tag completion does run inside a query block, so typing # or @ there suggests indexed tags.
← Search pages and tag overviews · All topics · Home and Stats →