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

Title As Link Text

lextoumbouroulextoumbourou4k downloads

Automatically updates link text to use note titles instead of filenames.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates22

Transform your Obsidian links from plain filenames into meaningful titles automatically! 🔄

Example transformation

✨ What It Does

Title As Link Text is an Obsidian plugin that intelligently transforms your links to use note titles instead of filenames, whether you're using Markdown-style links or Wikilinks.

Before:

[[20230408102501]]
[document-name](./complex-topic.md)

After:

[[20230408102501|My Awesome Note]]
[Understanding Complex Topics](./complex-topic.md)

⚡ Key Features

  • Smart Title Detection: Automatically finds the best title from frontmatter, H1 headers, or filenames

  • Multiple Link Styles:

    • Wikilinks: [[file-name|Note Title]]
    • Markdown: [Note Title](./file-name.md)
  • Alias Support: Respects your custom aliases with smart matching

  • Per-Link Overrides: Preserve intentional custom link text with a hidden comment directive or note property

  • Automatic Updates: Links update automatically when you save or rename files

⚠️ WARNING

This plugin can modify multiple files when notes with backlinks are changed. Please backup your vault before using.

🚀 Installation

Title As Link Text is available as a Community Plugin.

  1. Open Settings > Community Plugins > Browse
  2. Search for Title As Link Text
  3. Click Install

🔧 How It Works

Title Inference Logic

  1. Frontmatter First: Checks for a configured property in frontmatter (default: title)
---
title: My Note
---
  1. H1 Headers: Falls back to first # heading
# My Note
  1. Filename Fallback: Uses filename if no other title is found

Smart Alias Matching

  • Substring Detection: Matches partial aliases (e.g., "Project" → "My Project Name")
  • Fuzzy Matching: Finds close matches when no exact match exists
  • Preserves Intentional Variations: Respects your custom aliases

Preserve Custom Link Text

To preserve one link's custom display text, add the ignore directive immediately after it. Horizontal whitespace between the link and directive is allowed. Obsidian hides the directive in Reading view.

[[project-phoenix|the original proposal]]%%talt:ignore%%
[the original proposal](project-phoenix.md) %%talt:ignore%%

You can also place the cursor inside a link and run Toggle link text updates from the Command palette. Run it again to remove the directive.

To preserve every link to selected targets within a note, list those targets in the note's title-as-link-text-ignore property. Entries can be wikilinks, Markdown links, or link paths. Quote wikilinks when using them in properties.

---
title-as-link-text-ignore:
  - "[[project-phoenix]]"
  - "reference/design-notes"
  - "[[project-orion|the fallback plan]]"
---

A bare wikilink or link path excludes every link to that target within the note. An aliased wikilink excludes only that exact target and display text. Both forms match wikilinks and Markdown links in the article. Links to the same target in other notes are unaffected.

🤝 Recommended Companion Plugins

For Markdown-style users:

  • Wikilinks To Markdown: Convert existing Wikilinks
  • Front Matter Title: Consistent title display

⚙️ Settings

  • Auto-update: Automatically update links when notes are saved or renamed (enabled by default). When disabled, links will only update when you run the update commands manually.

Title Source

  • Title from frontmatter: Use the title field from frontmatter as the link text (enabled by default)
  • Frontmatter property: The frontmatter property to use for getting the title (default: title). This allows you to use custom properties like name, heading, or any other field in your frontmatter.
  • Title from first heading: Use the first heading in the note as the link text (enabled by default)
  • Use aliases: Match link text against frontmatter aliases (enabled by default). When disabled, only the title will be used for link text, ignoring any aliases defined in frontmatter.

Both title source options can be toggled independently. When disabled, the plugin falls back to the next available source, ultimately defaulting to the filename.

Advanced

  • Debounce delay: How long to wait (in milliseconds) before updating links after a change (default: 1000ms)
  • Similarity threshold: Minimum similarity score (0.0 to 1.0) required for alias matching. Higher values require closer matches (default: 0.65)
  • Reset to defaults: Button to quickly reset all settings to their default values

🛠️ Commands

  • Update all links: One-click update for all existing links in your vault
  • Update links for current file: Update links only in the currently active note
  • Toggle link text updates: Add or remove %%talt:ignore%% for the link under the cursor

👩‍💻 Development

Ensure you have nvm (or some Node version manager).

Clone the repository and run the following to build the plugin:

nvm use 16
npm install
npm run build

Or to run dev server:

npm run dev

Run tests:

npm test

📄 License

MIT

HealthExcellent
ReviewSatisfactory
About
Transform links to use note titles instead of filenames, converting Wikilinks and Markdown links to display titles inferred from frontmatter, the first H1, or filename. Automatically update links on save or rename and respect aliases with fuzzy matching.
LinksAutomationProperties
Details
Current version
1.1.13
Last updated
3 weeks ago
Created
3 years ago
Updates
22 releases
Downloads
4k
Compatible with
Obsidian 1.1.0+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Sponsor
Buy Me a Coffee
Author
lextoumbouroulextoumbourou
notesbylex.com
GitHublextoumbourou
  1. Community
  2. Plugins
  3. Links
  4. Title As Link Text

Related plugins

Advanced URI

Control everything with URI.

Update modified date

Automatically update a frontmatter modified date field when the file is modified.

MetaEdit

Manage your metadata.

Waypoint

Easily generate dynamic MOCs in your folder notes using waypoints. Enables folders to show up in the graph view and removes the need for messy tags!

Auto Link Title

Automatically fetches the titles of links from the web.

Link Embed

Convert URLs in your notes into embeded previews.

Fold Properties By Default

Always have editor/metadata properties folded by default

Wikilink Types

Type @ inside wikilink aliases to add relationship types, auto-synced to YAML frontmatter.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

BRAT

Easily install a beta version of a plugin for testing.