Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Article Navigator

IvanHanlothIvanHanloth72 downloads

Adds Previous / Next / SeeAlso navigation to notes via frontmatter properties. Supports floating buttons or VitePress-style inline navigation.

Add to Obsidian
Article Navigator screenshot
Article Navigator screenshot
Article Navigator screenshot
  • Overview
  • Scorecard
  • Updates3

An Obsidian community plugin · 中文文档

Adds Previous / Next / See Also navigation to your notes through standard frontmatter properties. Supports a VitePress-style inline nav bar, floating side buttons, and automatic reverse linking — all without any external dependencies.


Features

Feature Description
Inline navigation Previous / Next cards rendered at the bottom of each note (Reading & Source view)
Floating side buttons Circular or full-height strip buttons inside the document area
See Also list Related-note list rendered at the top or bottom of a note
Auto backlink When you set Prev/Next, the plugin keeps the reciprocal link on the target note in sync
New-note seeding Newly created empty notes get the three navigation properties automatically
Edge / tap navigation Optional: double-click page margins or tap half the screen on mobile to navigate
i18n UI language follows Obsidian's language setting automatically

Demo

navigate to previous article

see also demo

navigate to next article with circular style navigator


Installation

Make sure you have turned off Restricted mode in Settings → Community plugins to allow using plugins.

Via Obsidian URI

  1. click this link: obsidian://show-plugin?id=article-navigator to open the plugin page in Obsidian's Community plugin browser.
  2. Click Install, then Enable.

Community plugin browser

  1. Open Settings → Community plugins → Browse.
  2. Search for Article Navigator.
  3. Click Install, then Enable.

Manual installation

  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. Copy the three files to <vault>/.obsidian/plugins/article-navigator/.
  3. Reload Obsidian and enable the plugin in Settings → Community plugins.

Getting started

1 · Add navigation properties to a note

Open any note and run the command:

Article Navigator: Insert navigation properties into current note

This inserts three empty frontmatter keys if they are not already present:

---
PreviousArticle: ""
NextArticle: ""
SeeAlso: []
---

2 · Link to adjacent notes

Fill in the keys with wikilinks:

PreviousArticle: "[[My Previous Note]]"
NextArticle: "[[My Next Note]]"
SeeAlso:
  - "[[Related Topic A]]"
  - "[[Related Topic B]]"

3 · Navigate

  • Click the inline nav cards at the bottom of the note.
  • Click the floating side buttons at the document edges.
  • Use the commands Go to previous article / Go to next article (assignable to hotkeys).

Settings reference

Display

Setting Default Description
Add properties to new notes On Seed empty new notes with the three navigation keys
Inline navigation at bottom On Show the VitePress-style Previous / Next bar
Floating side buttons Tall Style of the floating buttons: Off, Circular, Tall strip
See Also position Bottom Where to render the See Also block: Top, Bottom, Hidden

Floating button behaviour

Setting Default Description
Fade buttons when idle On Fade to 12 % opacity after the delay
Idle fade delay 3 s Seconds of inactivity before fading (1–15)

Tap navigation

Setting Default Description
Double-click margins to navigate Off Double-click the empty area beside the content
Tap half-screen on mobile Off Single tap on the left / right half navigates

Auto reverse linking

Setting Default Description
Enable auto reverse linking On Keep reciprocal Prev/Next links in sync automatically
Conflict mode Prompt What to do when the target already has a different link: Prompt, Auto-update, Skip

Property keys

Override the frontmatter key names used by the plugin.

Edits to these three fields are not saved on the fly — the inputs hold a draft until you click one of the two shared buttons at the bottom of the section. Both buttons are always visible but only become clickable once at least one key actually differs from the saved value.

Button What it does
Save Persist the new key names. Existing notes keep their old keys; the plugin will simply look for the new keys from now on.
Save & rename existing notes Persist the new key names and rewrite every note in the vault so the old keys are migrated to the new ones.

The rename pass is safe to use when you reshuffle multiple keys at once (for example swapping A → B and B → A). Internally each affected file is processed in two phases: every source key is first moved to a unique temporary placeholder, then the placeholder is moved onto the final destination. This avoids any intermediate collision. If a target key is already present on a note from an unrelated source, the rename for that particular key on that note is skipped so unrelated data is never clobbered — the final notice tells you how many keys were skipped, if any.

Renaming uses Obsidian's processFrontMatter API, which means the YAML is normalised the same way Obsidian itself writes properties; cached navigation snapshots are also reset afterwards so the auto-backlink controller doesn't mistake the rename for a real user edit.

Setting Default
Previous article key PreviousArticle
Next article key NextArticle
See Also key SeeAlso

Display labels

Leave blank to use the default label for Obsidian's current language.

Setting Default (English) Default (Chinese)
Previous label Previous 上一篇
Next label Next 下一篇
See Also label See also 相关阅读

Commands

Command Description
Go to previous article Navigate to the note in PreviousArticle
Go to next article Navigate to the note in NextArticle
Insert navigation properties Add empty Prev / Next / SeeAlso keys to the active note

All three commands can be assigned to custom hotkeys in Settings → Hotkeys.


Development

Requirements

  • Node.js ≥ 18 (LTS recommended)
  • npm

Setup

git clone https://github.com/IvanHanloth/obsidian-article-navigator
cd obsidian-article-navigator
npm install

Scripts

Command Description
npm run dev Watch mode — rebuilds main.js on every change
npm run build Type-check + production bundle
npm run deploy Build and copy artifacts into test_vault
npm run deploy -- /path/to/vault Build and deploy to a custom vault
npm run lint ESLint (includes Obsidian-specific rules)
npm run version Bump version in manifest.json and versions.json

Tip: You can also set the target vault via an environment variable:

VAULT_PATH=/path/to/my-vault npm run deploy

Project layout

src/
├── main.ts                 Plugin lifecycle — event wiring, onload / onunload
├── types.ts                Shared TypeScript types
├── constants.ts            CSS class names, timer durations
├── settings.ts             Settings interface, defaults, migration
├── settings-tab.ts         Settings UI
├── commands.ts             Command registration
├── i18n/
│   ├── index.ts            I18n class, locale detection
│   └── locales/
│       ├── en.ts           English
│       └── zh.ts           Chinese
├── nav/
│   ├── link-resolver.ts    Frontmatter link parsing and resolution
│   ├── frontmatter.ts      Frontmatter read / write helpers
│   └── auto-backlink.ts    Reciprocal link automation
└── ui/
    ├── view-manager.ts     Per-view refresh orchestration
    ├── floating-buttons.ts Floating prev / next buttons
    ├── inline-injections.ts Inline nav bar + See Also block
    ├── edge-handlers.ts    Edge / mobile tap handlers
    └── confirm-modal.ts    Confirmation dialog

Adding a locale

  1. Create src/i18n/locales/<code>.ts implementing the Translation interface from src/i18n/index.ts.
  2. Import and register it in the BUNDLES map in src/i18n/index.ts.
  3. Add the locale code to the LocaleCode union type.

Releasing

  1. Update minAppVersion in manifest.json if needed (see the Obsidian version reference).
  2. Run npm version patch|minor|major — this bumps manifest.json, package.json, and versions.json.
  3. Push the tag and create a GitHub release with main.js, manifest.json, and styles.css as release assets.

Compatibility

  • Minimum Obsidian version: 1.4.0
  • Mobile: ✓ fully supported (isDesktopOnly: false)
  • No external network requests, no telemetry.

License

MIT License

HealthExcellent
ReviewPassed
About
Add Previous / Next / See Also navigation to notes using standard frontmatter properties. Render VitePress-style inline nav cards, floating side buttons and a related-note list; keep reciprocal backlinks synchronized, auto-seed new notes with navigation keys, and enable edge/tap navigation.
NavigationPropertiesLinks
Details
Current version
1.0.2
Last updated
3 weeks ago
Created
4 weeks ago
Updates
3 releases
Downloads
72
Compatible with
Obsidian 1.4.0+
Platforms
Desktop, Mobile
License
0BSD
Report bugRequest featureReport plugin
Author
IvanHanlothIvanHanlothivanhanloth
GitHubivanhanloth
  1. Community
  2. Plugins
  3. Navigation
  4. Article Navigator

Related plugins

Breadcrumbs

Visualise the hierarchy of your vault using a breadcrumb trail or matrix view.

Strange New Worlds

Reveal networked thought and the strange new worlds created by your vault.

Smart Rename

Rename notes keeping previous title in existing links.

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.

Advanced Canvas

Supercharge your canvas experience. Create presentations, flowcharts and more.

Recent Files

Display a list of recently opened files.

Smart Connections

Find related notes and excerpts while writing. Your link building copilot displays relevant content in graph + list view. A local embedding model powers semantic search. Zero setup. No API key.

Homepage

Open a note, base, or workspace on startup, or set it for quick access later.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

Meta Bind

Make your notes interactive with inline input fields, metadata displays, and buttons.