Markdown Mindmap

by Kiko Castro
5
4
3
2
1
New Plugin

Description

Render configurable mind maps / leveled trees from your notes' frontmatter links. Define each map in a ```mindmap code block. - This plugin has not been manually reviewed by Obsidian staff.

Reviews

No reviews yet.

Stats

stars
downloads
0
forks
0
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Markdown Mindmap

coverage

An Obsidian plugin that renders configurable mind maps (leveled, left-to-right trees) live from your notes' frontmatter links. Each map is a single fenced ```mindmap code block, so you can drop as many maps as you like anywhere in your vault. There is no separate data file to keep in sync: the tree is rebuilt from your notes every time you open it.

Point it at some folders, tell it which frontmatter field links each note to its parent, and it draws the graph: a column per level, curved edges, hover to highlight a node's lineage, click to open the note, collapse/expand subtrees, filter, and search.

It ships as two adapters over one shared core (src/graph.ts): the Obsidian plugin (the full experience described below, rendered inline in a note) and a VS Code extension (a command opens the map in a panel — see VS Code). The feature list below describes the Obsidian plugin; the VS Code adapter is intentionally minimal for now (render + pan/zoom + click-to-open).

Screenshots

Overview — map with sidebar filters

Card dialog Hover lineage
Card dialog showing parents, siblings, children and rendered note Hover highlighting a node's full lineage
Saved views Search highlight Titles only
Save current filters as a named view Search spotlighting matching cards Titles-only mode

Features

  • Live from frontmatter. Folders become columns; frontmatter links become edges. Add or remove a note and the map updates.
  • Per-level card design. Pick which fields show as title / subtitle / meta per level; cards auto-size to their content.
  • Edges from links. A [[wikilink]], plain title, basename, list, or nested field (customFields.serves) on either end of an edge.
  • Secondary (dashed) links. Mark cross-links that should draw dashed and stay out of the layout spine (e.g. "also relates to").
  • Bar charts & progress bars. Render a 0–100 field as a progress bar, or a list field as a stacked count-by-category bar.
  • Multi-select filters and saved views. Toggle-chip filters per property (OR within a property, AND across), then save named filter combinations back into the map block. Each saved view also remembers which subtrees are collapsed.
  • Export. Save the current map next to the note as a standalone HTML file or an editable Excalidraw drawing.
  • Search highlight. A search box that spotlights matching cards and dims the rest.
  • Collapse / expand any subtree, focus a node's lineage/subtree, pan / zoom / fit / fullscreen; click a card for a dialog with its linked parents/children, optional properties, and the rendered note.
  • Theme-aware. Uses Obsidian CSS variables, so it follows your light/dark theme.

How it works

A map is a list of levels. Each level reads notes from a from: folder and becomes a column (left to right, in the order you list them). Edges connect levels: an edge says "notes in the child level point up to a note in the parent level via frontmatter field X".

 LEVEL 0          LEVEL 1              LEVEL 2
 ┌──────────┐     ┌──────────────┐     ┌────────────┐
 │  Goal A  │────▶│  Project 1   │────▶│   Task …    │
 │          │──┐  └──────────────┘     └────────────┘
 └──────────┘  │  ┌──────────────┐     ┌────────────┐
               └─▶│  Project 2   │────▶│   Task …    │
                  └──────────────┘     └────────────┘
        edge: project.goal=[[Goal A]]    edge: task.project=[[Project 1]]

Install

Markdown Mindmap is in the Obsidian community plugin store:

  1. Settings → Community plugins → Browse.
  2. Search "Markdown Mindmap", Install, then Enable.

Updates arrive through Obsidian's normal plugin-update flow.

Manual (local testing / latest build)

  1. Get the three build files (main.js, manifest.json, styles.css) — either from a Release or by building from source (npm install && npm run build).
  2. Copy them into <your-vault>/.obsidian/plugins/markdown-mindmap/.
  3. Reload Obsidian, then Settings → Community plugins → enable "Markdown Mindmap".

BRAT

Once a release is published, install with BRAT: Add beta pluginkikocastro/markdown-mindmap. BRAT-managed plugins also survive Obsidian Sync, unlike a hand-copied folder.

Quick start

Put this in any note (Reading view or Live Preview):

```mindmap
title: Goals → Projects → Tasks
levels:
  - id: goals
    label: GOALS
    from: planning/goals
    card: { title: title, sub: kpi }
  - id: projects
    label: PROJECTS
    from: planning/projects
    card: { title: title, meta: [status] }
  - id: tasks
    label: TASKS
    from: planning/tasks
    card: { title: title, meta: [status], progress: progress }
edges:
  - { from: goals,    to: projects, via: goal }     # each project note: goal: "[[Goal A]]"
  - { from: projects, to: tasks,    via: project }  # each task note: project: "[[Project 1]]"
filter: [status]
```

A runnable copy of this map, with sample notes, lives in examples/mindmap-demo/. Copy that folder into your vault root and open Mindmap demo.md.

Configuration reference

Top level

Key Type Meaning
title string Heading in the toolbar.
height number Component height in px (default 900).
levels list Columns, left to right. Required.
edges list Parent → child links between levels.
filter list of strings Frontmatter properties exposed as multi-select chip filters.
filterLabels map Rename a filter group's heading, e.g. { customFields.quarters: Quarter }. Unlisted properties keep their raw name.
layout map Override card/column sizing (below). All keys optional.
properties boolean When true, the note dialog shows all frontmatter as a table above the rendered note.
views list Saved filter + collapse selections, managed by the toolbar's saved-view controls.

layout (all optional, defaults shown)

Key Default Meaning
cardWidth 270 Card width in px.
cardHeight 44 Minimum card height in px. Cards auto-size to their content (title lines, sub, meta, bar, labels); this only sets the floor.
columnGap 150 Horizontal gap between columns.
rowGap 12 Vertical gap between stacked cards.
top 64 Top margin before the first card.
titleLines 2 Title lines shown before truncating. Set 3 to allow longer titles; cards grow to fit automatically.
subLines 1 Subtitle (sub) lines shown before truncating. Set 2+ to wrap a long subtitle onto multiple lines; cards grow to fit.

Each level

Key Type Meaning
id string Unique id, referenced by edges. Required.
from string Folder to read notes from (recursive). Required.
label string Column header.
color hex string Column / card-border colour. Defaults cycle the flatuicolors defo palette.
where map Keep only notes whose frontmatter matches a value, e.g. { horizon: now } to use only drivers with horizon: now, or { parentId: null } to keep top-level notes (a null target matches null, empty, or missing). Multiple keys are AND-ed.
card map Which fields render on the card (below).

Each card

All card field values are frontmatter property names. Dotted paths work everywhere (customFields.serves, nested.key).

Key Type Renders
title field Bold title (falls back to the file name).
sub field Subtitle line.
meta list of fields A muted ·-joined line.
progress field (0–100) A progress bar.
bars field or map A stacked count-by-category bar (below).
labels list of fields Small colored value pills along the card's bottom strip, one per field (e.g. [kind, horizon, stage]). Empty/missing fields drop out; pills that don't fit on one row are skipped.

bars — either a field name (string) or a map:

Key Type Meaning
field field The list field to count. Required.
category parens | value How to derive each category. parens (default): text in trailing parens, else the value ("Acme (client)"client). value: the whole value.
colors map category → hex. Categories not listed cycle the auto palette. Omit to use the built-in client/prospect/trial/customer defaults.

bars: demand is shorthand for bars: { field: demand, category: parens }.

Each edge

Key Type Meaning
from level id Parent level.
to level id Child level.
via field The frontmatter field holding the link. By default it lives on the to notes and points up to a from note. Dotted paths work (customFields.serves).
reverse bool Set true when the field lives on the from notes and points down (e.g. a serves: list).
secondary bool Draw the edge dashed and keep it out of the layout spine (for "also relates to" cross-links).

A via value is matched, in order, against: Obsidian's own link resolution ([[wikilink]]), then the target's basename, then its title frontmatter. A value may be a single link or a list. A note's first non-secondary parent is its layout parent (single-parent tree); any extra parents still draw edges.

Advanced example

A product strategy tree, showing secondary dashed links, demand bars, and progress bars:

```mindmap
title: North Star → Drivers → Opportunities → Roadmap
height: 860
properties: true
levels:
  - { id: northstar, label: NORTH STAR,   from: strategy/north-star,   color: "#1abc9c", card: { title: title, sub: metric } }
  - { id: drivers,   label: DRIVERS,       from: strategy/drivers,      color: "#9b59b6", card: { title: title, sub: metric } }
  - { id: opps,      label: OPPORTUNITIES, from: strategy/opportunities, color: "#e67e22", card: { title: title, labels: [kind, horizon], bars: demand } }
  - { id: roadmap,   label: ROADMAP,       from: strategy/roadmap,      color: "#e74c3c", where: { parentId: null }, card: { title: title, meta: [status], progress: progress } }
edges:
  - { from: drivers, to: opps,    via: ladders-to }
  - { from: opps,    to: roadmap, via: serves }
  - { from: opps,    to: roadmap, via: alsoServes, secondary: true }   # dashed
filter: [horizon, kind, status]
```

Interactions

  • Search box — spotlight cards matching title / sub / meta, dim the rest.
  • Filter chips — multi-select per property (OR within, AND across), with options sorted alphabetically.
  • Saved views — save the current filter combination, apply it from the dropdown, edit it, or delete it. Each view also stores which subtrees are collapsed, so applying it restores that shape. Saved views are written to the block's views: key.
  • Export — save the current map next to the note as a standalone .html file or an editable .excalidraw drawing.
  • Hover a card — highlight its full up/down lineage.
  • Click a card — open a dialog: title + file name, level badge, progress/demand breakdown, its linked parents, siblings, and children (click one to jump the dialog there), optional frontmatter properties, the rendered note, "Open note", and "Focus".
  • Focus from a card dialog — show that node, its ancestors, and its primary descendants; click empty map space to clear focus.
  • Titles only — toggle the toolbar button to hide each card's subtitle, meta, bars, and labels, leaving just the title.
  • + / − on a card — collapse / expand its subtree.
  • ⟨ / ☰ — collapse the toolbar to a single button (and expand it back) when it gets in the way.
  • ? — open the quick-reference help dialog.
  • — fullscreen. Reset — clear filters/search/collapse/focus and refit.
  • Drag to pan, scroll to zoom.

Development

npm install
npm run dev     # esbuild watch → main.js (Obsidian) + dist/ (VS Code)
npm run build   # type-check + production build

Obsidian only loads main.js, manifest.json, and styles.css. For live iteration, symlink this folder into your vault:

ln -s "$(pwd)" "<your-vault>/.obsidian/plugins/markdown-mindmap"

(If you use Obsidian Sync, prefer a Release + BRAT, or commit the built files — Sync can remove a hand-linked plugin folder it doesn't recognize.)

VS Code

The same core also drives a VS Code extension (src/vscode/). Unlike Obsidian, it does not render inline in the editor — you run a command and the map opens in a panel.

Run it from source:

  1. Open this repo's folder in VS Code (the adapter lives in src/vscode/).
  2. Press F5 (Run and Debug → Run Extension). It builds, then opens an Extension Development Host window already pointed at examples/.
  3. In that window, open a markdown note that contains a ```mindmap block (e.g. mindmap-demo/Mindmap demo.md).
  4. Command Palette (Cmd/Ctrl+Shift+P) → Markdown Mindmap: Open Map. The graph opens in a panel beside the note: drag to pan, scroll to zoom, click a card to open that note.

Notes:

  • Config source: the active note's first ```mindmap block (same YAML as Obsidian).
  • from: paths are relative to the workspace root, and links resolve by note basename or title frontmatter (there's no vault link index outside Obsidian).
  • Visuals follow your VS Code theme (via --vscode-* variables), so the map looks different from the Obsidian version by design.
  • Current scope: render + column headers + pan/zoom + click-to-open. The toolbar (search, filter chips, fullscreen, reset), collapse toggles, and the note dialog are Obsidian-only for now.

Limits

  • from: is folder-only (no tag / Dataview queries yet).
  • Link resolution matches a wikilink, basename, or title — not an arbitrary shared field value (so a keyword like stage: claims won't auto-link unless a note of that basename/title exists).
  • Layout centring assumes primary edges connect adjacent levels.

License

MIT © Kiko Castro