David Breece173 downloadsDisplay related notes in a sidebar view using a custom property or using notes with the same tags.
Display related notes from frontmatter in a dedicated sidebar view.
| Field | Value |
|---|---|
| Author | David Breece |
| Version | 1.3.8 |
| Minimum Obsidian version | 1.8.0 |
See Also Sidebar reads a see-also property from the active note frontmatter and renders related notes in a sidebar panel.
📋 Data Access Notice: This plugin includes an optional "Automatic suggestions" feature that, when enabled, reads the list of all markdown files in your vault to find notes with shared tags. This feature is disabled by default and all processing is local—no data leaves your device. See Privacy & Data Access for details.
see-also formatsThis plugin is now in the Obsidian Community Plugins directory!
main.js, manifest.json, and styles.css.<YourVault>/.obsidian/plugins/see-also-sidebar/
Add a see-also property to a note frontmatter block.
---
see-also:
- Note A
- Note B
- Concepts/Note C
---
---
see-also: [Note A, Note B, Concepts/Note C]
---
---
see-also: Note A
---
---
see-also:
- "[[Note A]]"
- "[[Long Technical Note|Quick summary]]"
- "Architecture#API Layer"
---
When Automatic suggestions is enabled, notes that share tags with the active note are suggested in addition to explicit see-also entries.
Behavior details:
see-also entries are always included (unless hidden via Custom links position setting).Settings location:
| Setting | Type | Default | What it does |
|---|---|---|---|
| Sidebar heading text | String | See also |
Text used as the sidebar heading. Empty or whitespace values fall back to See also. |
| Open links in new tab | Boolean | false |
When enabled, related-note clicks open in a new tab by default. Ctrl/Cmd-click and middle-click still open in a new tab. |
| Automatic suggestions | Boolean | false |
When enabled, the sidebar also includes notes that share tags with the active note. |
| Group automatic suggestions by tag | Boolean | true |
When enabled (and automatic suggestions is on), grouped mode shows the configured Custom group label followed by tag-based sections. |
| Custom group label | String | Custom |
Label used for explicit see-also entries in grouped mode. Non-alphanumeric characters are removed; empty values fall back to Custom. The field validates when you leave it, so you can freely clear and retype the label without interruption. |
| Custom links position | Dropdown | Above |
Controls where explicit see-also entries appear relative to automatic suggestions. Options: Above (before tag groups), Below (after tag groups), or Hidden (only show automatic suggestions). Only visible when both automatic suggestions and grouping are enabled. |
This plugin operates locally within your vault and does not send data to external services.
When automatic suggestions are enabled, the plugin accesses the list of all markdown files in your vault using vault.getMarkdownFiles(). This is necessary to:
This enumeration:
When automatic suggestions are disabled, the plugin only accesses:
see-also propertyBuild from source:
npm install
npm run lint
npm run build
For watch mode:
npm run dev
This project includes a LICENSE file at the repository root.