Glossary
The vocabulary of linked notes, defined plainly
Linked-note software has accumulated its own vocabulary — wikilinks, backlinks, transclusion, Zettelkasten, maps of content, frontmatter — most of it borrowed from wikis, academia and hypertext research. These are the working definitions, each written to be understandable without the others.
Linking
- Wikilinkalso: wiki link, double bracket link
A link written as [[Note title]] that points at another note by its title rather than by a file path. Because the app resolves it, a wikilink survives the target being moved or renamed, and can be written before the target note exists.
Variants add precision without adding ceremony: [[folder/Note]] disambiguates two notes with the same title, [[Note|alias]] changes the displayed text, [[Note#Heading]] targets a heading, and ![[Note]] embeds the content inline instead of linking to it.
Backlinks and wikilinks →- Backlinkalso: linked mention, reverse link
The automatic reverse of a link. If note A contains a link to note B, then note B shows that A references it — usually with the surrounding sentence for context. You write one direction; the software maintains the other.
Backlinks and wikilinks →- Bidirectional linkalso: two-way link, backlinking
A link that is visible and navigable from both ends. In practice it means writing a normal one-way link and having the software generate the return view, which is what makes dense linking cheap enough to sustain.
- Unlinked mention
A place where a note's title appears as plain text somewhere else in the vault without being a link. Usually text written before that note existed. Reviewing unlinked mentions is the fastest way to connect an existing pile of notes.
- Unresolved linkalso: ghost node, dangling link
A wikilink whose target note does not exist yet. It is valid, and it appears in the graph as a hollow node. Clicking it creates the note with the backlink already resolved, which makes 'write the link now, write the note later' a workable habit.
- Transclusionalso: embed, note embed
Including one note's content inside another so that it renders in place and updates when the source changes. Written as ![[Note]] or ![[Note#Heading]]. Distinct from copying, which forks the text and lets the copies drift.
- Block reference
A link to a single block — usually one paragraph or bullet — rather than to a whole note. Roam, Logseq and Obsidian support them with ((id)) or ^id syntax. Document-oriented tools including Nodum generally do not, because the unit of meaning is the note.
- Knowledge graphalso: graph view, note graph
A visualisation in which every note is a node and every link is an edge, arranged by a force simulation so connected notes pull together. Its value is structural: it shows clusters, orphaned notes and gaps between areas of your thinking that search cannot surface.
What a knowledge graph shows you →- Local graph
A graph restricted to the neighbourhood of one note — its links, their links, and so on to an adjustable depth. More useful than the global graph for day-to-day work, because it answers 'what is this note near?' rather than 'what does everything look like?'.
- Orphan note
A note that nothing links to and which links to nothing. Some orphans are fine — a shopping list is not supposed to be connected. Others are ideas captured and then abandoned, and finding them is usually the point of filtering for them.
Structure
- Vault
One self-contained collection of notes, with its own folders, tags, links and graph. The term comes from Obsidian, where a vault is a folder on disk. In Nodum a user can own several vaults, and links resolve within a vault rather than across them.
- Frontmatteralso: YAML frontmatter, properties
A block of YAML at the very top of a markdown file, fenced by ---, holding structured properties: tags, aliases, dates, status, anything you want to query on later. It travels with the file, so the metadata does not depend on the app that wrote it.
- Nested tag
A tag with hierarchy, written #parent/child. Searching the parent matches every child, which gives you a taxonomy without giving up the flatness that makes tags easy to apply. Both inline #tags and frontmatter tags can nest.
- Map of contentalso: MOC, index note, structure note
A note whose body is mostly curated links, describing one region of a vault. It is the entry point into a cluster of notes — the digital equivalent of the hub cards Luhmann kept. Worth writing when a cluster gets too big to hold in your head, and not before.
- Daily notealso: journal, daily journal
One note per day, created automatically from a template, used as a capture surface. It removes the 'where does this go?' decision at the moment of writing, which is exactly when that decision is most expensive.
- Attachment
A non-markdown file — an image, a PDF, an audio file — stored alongside notes and embedded with ![[filename]]. In Nodum attachments live in S3-compatible object storage and are served through presigned URLs.
Method
- Second brainalso: digital brain, external brain
An external, searchable store of what you have read, decided and worked out, structured so past-you can hand something usable to future-you. The term was popularised by Tiago Forte; the practice long predates it.
Building a second brain →- Zettelkastenalso: slip box, slip-box method
German for 'slip box'. A note method with three rules: one idea per note, written in your own words, and linked to related notes rather than filed by topic. Associated with the sociologist Niklas Luhmann, who used a paper version to produce a very large body of work.
Zettelkasten, without the mystique →- Atomic note
A note containing exactly one idea. Atomicity is what makes a note linkable with precision and reusable in contexts you did not anticipate; a note holding six ideas can only ever be referenced as a lump.
- Evergreen note
A note written to be rewritten — improved and re-argued over time rather than appended to and abandoned. The formulation is Andy Matuschak's, and it is the single most useful idea to take from the note-writing literature.
- Personal knowledge managementalso: PKM
The practice of capturing what you encounter, connecting it to what you already know, and retrieving it when relevant. The connecting step is what separates it from simply keeping files, and it is the step most systems quietly skip.
PKM, minus the theatre →- PARA
Projects, Areas, Resources, Archive — an organising scheme that files notes by how actionable they are rather than by subject. Strong for active work; weaker as a long-term thinking archive, since 'archive' is where ideas go quiet.
- Networked thought
The general name for working in a note system where structure comes from links between notes rather than from a folder hierarchy. Roam Research popularised the phrase; the tools in this category are sometimes called networked-thought or tools-for-thought apps.
Writing
- Markdown
A plain-text format with a light convention for structure — headings, emphasis, lists, links, code. It is readable without any software rendering it, which is why it is the format with the longest demonstrated shelf life for notes.
Why notes should be markdown →- Live preview
An editing mode where markdown renders in place as you type, and the raw syntax reveals itself on the line your cursor is on. It replaces the older split-screen model of raw markdown beside a rendered preview.
- Reading view
A fully rendered, non-editable view of a note — no syntax, no cursor, just the document. Useful for review and for sharing, and the view public published pages use.
- Calloutalso: admonition
A styled block for asides, warnings and notes, written as a blockquote with a type marker: > [!note], > [!warning]. The syntax comes from Obsidian and is now widely supported. Nodum implements the full set with icons, colours and folding.
- Quick switcher
A fuzzy search box, usually on ⌘O, that jumps to a note by title — and creates the note when nothing matches. The single most important capture affordance in a linked-note app, because it collapses 'find or make a note' into one keystroke.
- Command palette
A searchable list of every command in the application, usually on ⌘P. It removes the need to memorise shortcuts or hunt through menus, and it is how most people discover what an app can actually do.
Software
- Local-first
Software where the primary copy of your data lives on your own device and the network is an optimisation rather than a requirement. Obsidian, Logseq and Anytype are local-first. Nodum is not — it is a server application, with self-hosting as the ownership story instead.
- Self-hosting
Running the server software yourself, on hardware you control, rather than using a vendor's hosted instance. It removes vendor risk and per-seat pricing, and adds operational responsibility: backups, updates and TLS become yours.
Self-hosted notes →- Open source
Software published under a licence that permits reading, modifying, running and redistributing the source. Distinct from an open file format: Obsidian has an open format and closed source, while Nodum, Logseq and Joplin are open on both counts.
Open-source note-taking →- Model Context Protocolalso: MCP, MCP server
An open protocol that lets AI clients — Claude Code, Claude Desktop, Cursor — call tools on an external system. Nodum is an MCP server with 36 tools over the same services and ownership checks the app uses, so an AI assistant can read, search, create and link notes in your vault.
AI note-taking →- Full-text search
Search across the body of every note, not just titles. Nodum uses PostgreSQL full-text search with a GIN-indexed tsvector, supporting path:, file: and tag: operators, quoted phrases and -exclusions.
- Web clipper
A browser extension that saves a page — or a selection of one — into your notes with its source URL recorded. Nodum's is an MV3 Chrome extension backed by scoped, hashed, revocable tokens that can only create notes, so revoking one never touches your session.
- Canvasalso: whiteboard, infinite canvas
A freeform board where notes appear as cards you can arrange spatially and connect with lines. Useful for working through a problem visually. In Nodum it sits alongside notes rather than being the primary surface.
Why the vocabulary matters
Most of these words describe one mechanic each, and the mechanics are what actually differ between tools. Two apps can both say they support "linking" and mean completely different things — one means a hyperlink, the other means a wikilink with an automatic reverse view and a graph edge.
So when comparing tools, translate the marketing into these terms first. It usually resolves the comparison in about a minute. The alternatives pages do exactly that, tool by tool.
Related reading
The words are easier with a vault in front of you.
Make one, type two square brackets, and watch the other side of the link appear.
