Deckard guide

Writing notes: tags, people, and links

Markdown format

Deckard recognizes ATX headings, unordered checklist items, # tags, @ people, and [[Wiki links]]. Tag matching is case-insensitive.

deckard.noteBoundaries decides where one note ends and the next begins:

Setting A tagged line is A search for a tag written in prose returns
line (default) a note of its own that line
heading part of the heading above it the heading holding the line
marked part of the heading above it, unless it carries a ^marker the heading, or the marked line itself

Under heading, a tag written in a note’s prose is not moved onto the heading. It stays on the line it was written on, and the heading answers a search for it because it contains that line — so a heading still shows only the tags its author wrote on it, and the match knows which line it came from. A tag written on a heading goes on being inherited by everything nested under it, as it always has; a tag written in a body does not travel at all, neither up to the headings above nor across to the lines beside.

A tagged line with no heading above it stays a note whatever the setting says, because folding it would drop its tags. Consecutive tagged prose lines are grouped so wrapped explanations do not become truncated duplicate entries, and under marked a marker on any line of such a group marks the whole of it.

Tasks are outside all of this. A task is its own entry wherever it is written, under every setting.

Changing the setting reindexes the workspace by itself — nothing is written to your notes, and you do not need to run Deckard: Reindex Workspace. The search cache remembers how the notes in it were parsed, so it is rebuilt even when the setting was changed while VS Code was closed, which no file’s modified time would have revealed.

A [[link]] names a note by its file name without .md, or by any name in the note’s aliases: front matter, such as aliases: [Atlas Program, AP]. A name two notes share opens neither.

After #, a link can name a heading, as [[Check-in#Vendor review]] does, or one line, as [[Check-in#^lift-slip]] does. A line is named by the ^marker written at its end, the way the Obsidian block-reference convention writes it:

## Vendor review
The lift survey slipped because the contractor never confirmed. ^lift-slip
- [ ] Chase the contract @dana ^chase

Embeds

Write ![[Note]] on a line of its own and VS Code’s Markdown preview draws that note where the line is. The same reference a link uses, read in place:

Written Draws
![[Check-in]] the whole note, without its front matter
![[Check-in#Vendor review]] that heading, and everything nested under it
![[Check-in#^lift-slip]] the one line that marker names, without the marker
![[#Vendor review]] a heading of the note the embed is written in

By default, use @ for people and namespaced # tags for workspace entities:

# Project Atlas #project/atlas
Met with @alex-smith about [[Q3 planning]].

- [ ] Send the proposal by 2026-09-12 #project/atlas

#project/atlas, #topic/leadership, #org/acme, and #meeting/q3-planning appear as entity hubs. Any other namespaced tag, such as #management/performance, creates a new namespace automatically and appears as Management: Performance in its overview. Simple unnamespaced #follow-up tags remain supported; all tags appear together in the Dashboard’s Tags catalog. Deckard distinguishes @alex from #alex. You can configure namespace aliases to map a custom namespace to any built-in or custom target namespace, and you can move the people marker; when the people marker is changed from @, @name becomes a lightweight tag.

Frontmatter can add portable entity context to every heading and task in a note:

---
project: atlas
people: [alex-smith]
topics:
  - leadership
---

Supported front-matter values are highlighted in the editor and Cmd/Ctrl-clickable just like inline tags: people/person maps to @person, while projects, topics, organizations, and meetings map to their typed # tags. These metadata tags remain indexed and openable even when the note has no heading or task.

Run Deckard: Move Inline Tags to Front Matter to collect explicit tags from the current note into plural front-matter fields. Existing values are merged, unrelated YAML fields are preserved, and source tag tokens are removed. Because the resulting metadata applies to the entire note, use the command only for context that belongs to every heading and task in that note.

Run Deckard: Rename Tag to search the indexed tag list, choose a replacement, and update every matching source occurrence without changing ordinary prose or fenced code. Renaming to a tag that already exists merges the two; see Merging tags. On the Dashboard, a search page, or Related Notes, right-click a tag and choose Rename tag. In a Markdown editor, hover a tag and choose the clickable Rename action. The box starts from the old tag with its name selected: enter a complete tag such as #management/new-name, or only a new name to keep the selected tag’s marker and namespace. As you type, the box says what will happen — Merges into #project/atlas (42 entries)., Becomes a new tag #proj/atlas-2026., or This is #proj/atlas already; nothing will change. — and warns when a bare name with a / would keep the old namespace, as project/atlas typed for #proj/atlas becomes #proj/project/atlas.

For example:

# Launch plan #project/atlas

## Next steps #topic/planning

- [ ] Review the brief #topic/writing
- [x] Send the update @alex-smith

Use - [ ], * [ ], or + [ ] for an open task. Use - [x] for a completed task. A task inherits tags from its heading and can also have its own tags.

Editor assistance

Reference counts above a note's lines: its backlinks, and each heading's references, open tasks, and the entries that share its tags.

Templates

Put Markdown files in a templates folder at the root of your workspace, or the folder deckard.templatesFolder names, and run Deckard: New Note from Template. Deckard asks which template to use and the new note’s title, then creates the note in your notes folder and opens it. Deckard never indexes the templates folder, so a template’s tags and tasks stay out of your notes.

Right-click a folder in the Explorer and choose Deckard → New Note from Template Here… to write the note into that folder instead; if Deckard does not index that folder, it says so. Deckard: Create Daily Note and Deckard: New Note from Template are also in File → New File… and on the Welcome page.

Placeholder Becomes
{title} The title you enter, which is also the file name.
{date} Today’s date, such as 2026-09-13.
{time} The current time, such as 09:05.
{ask:Question} Your answer when Deckard asks the question. A question used twice is asked once.

Anything else in braces is left as written.

A template named after a tag namespace, such as person.md or project.md, starts every new hub note for a tag in that namespace. It can also use {tag}, and Deckard adds the describes: front matter unless the template writes its own.


← Getting started · All topics · Tasks →