No description
Find a file
2026-07-21 21:59:24 -06:00
.github chore: update template 2026-06-09 06:28:55 -06:00
.husky chore: update template 2026-04-08 08:01:21 -06:00
demo-vault chore(demo-vault): drop committed Invocables placeholder 2026-07-20 14:41:42 -06:00
scripts chore: update libs 2026-07-21 20:29:24 -06:00
src chore: update libs 2026-07-21 20:29:24 -06:00
.editorconfig Initial version 2024-12-07 16:54:25 -06:00
.gitattributes Initial version 2024-12-07 16:54:25 -06:00
.gitignore chore: update template 2026-06-09 06:28:55 -06:00
.markdownlint-cli2.mjs chore: update template 2026-04-08 08:01:21 -06:00
.nano-staged.mjs chore: update template 2026-04-08 08:01:21 -06:00
.npmrc Initial version 2024-12-07 16:54:25 -06:00
AGENTS.md docs: update 2026-07-16 01:41:55 -06:00
CHANGELOG.md chore: release 2.7.6 2026-07-21 21:59:24 -06:00
commitlint.config.ts chore: update template 2026-04-08 08:01:21 -06:00
CONTRIBUTING.md chore: update template 2026-06-09 06:28:55 -06:00
cspell.json chore: update libs 2026-07-21 20:29:24 -06:00
dprint.json feat: add demo vault 2026-07-20 09:19:46 -06:00
eslint.config.mts chore: update template 2026-04-08 08:01:21 -06:00
LICENSE Initial version 2024-12-07 16:54:25 -06:00
manifest.json chore: release 2.7.6 2026-07-21 21:59:24 -06:00
package-lock.json chore: release 2.7.6 2026-07-21 21:59:24 -06:00
package.json chore: release 2.7.6 2026-07-21 21:59:24 -06:00
README.md feat: add demo vault 2026-07-20 09:19:46 -06:00
tsconfig.json chore: sort tsconfig types 2026-06-27 21:13:49 -06:00
versions.json chore: release 2.7.6 2026-07-21 21:59:24 -06:00
vitest.config.ts chore: update template 2026-06-09 06:28:55 -06:00

Frontmatter Markdown Links

Buy Me a Coffee GitHub release GitHub downloads Coverage: 100%

This is a plugin for Obsidian that adds support for markdown links in frontmatter.

Demo vault

A demo vault with usage examples ships with every release. You can access it via any of the following:

  1. Running the Frontmatter Markdown Links: Open demo vault command.
  2. Downloading frontmatter-markdown-links.demo-vault.zip from the Releases.
  3. Browsing its source in demo-vault/ in this repository.

Features

---
# Obsidian supports natively
wikilink: "[[Wikilink]]"
wikilinkWithAlias: "[[Wikilink|Alias]]"
externalUrl: "https://example.com"

# Provided by this plugin
markdownLink: "[Alias](MarkdownLink.md)"
markdownLinkWithSpace: "[Alias with space](MarkdownLink%20with%20space.md)"
markdownLinkWithAngleBrackets: "[Alias with space](<MarkdownLink with space.md>)"
externalUrlWithAlias: "[Alias](https://example.com)"
externalUrlWithAngleBrackets: "<https://example.com>"
embeddedWikilink: "![[EmbeddedWikilink]]"
embeddedMarkdownLink: "![Alias](EmbeddedMarkdownLink.md)"
embeddedExternalUrl: "![Alias](https://picsum.photos/600)"
---

The feature of this plugin is on high demand on Obsidian forum:

The backlinks are now working for the markdown links in frontmatter.

The links in frontmatter are now clickable in all modes: Source mode, Live Preview, and Reading.

---
# Wikilinks and markdown links only inside quotes
wikilink: "[[Wikilink]]"
markdownLink: "[Alias](MarkdownLink.md)"
externalUrlWithAlias: "[Alias](https://example.com)"

# External urls work with and without quotes
externalUrlWithQuotes: "https://example.com"
externalUrlWithQuotesAndAngleBrackets: "<https://example.com>"
externalUrlWithoutQuotes: https://example.com
externalUrlWithoutQuotesAndWithAngleBrackets: <https://example.com>

# Multiline lists
multilineList:
  - Non-clickable
  - "[[Wikilink]]"
  - "[Alias](MarkdownLink.md)"
  - https://example.com

# Inline lists
inlineList: ["Non-clickable", "[[Wikilink]]", "[Alias](MarkdownLink.md)", "https://example.com"]

# Embeds
embeddedWikilink: "![[EmbeddedWikilink]]"
embeddedMarkdownLink: "![Alias](EmbeddedMarkdownLink.md)"
embeddedExternalUrl: "![Alias](https://picsum.photos/600)"
---

The plugin allows to use multiple links (wikilinks, markdown links, external links) in one property.

---
foo: "[[bar]] baz [[qux]]"
---

Installation

The plugin is available in the official Community Plugins repository.

Beta versions

To install the latest beta release of this plugin (regardless if it is available in the official Community Plugins repository or not), follow these steps:

  1. Ensure you have the BRAT plugin installed and enabled.
  2. Click Install via BRAT.
  3. An Obsidian pop-up window should appear. In the window, click the Add plugin button once and wait a few seconds for the plugin to install.

Debugging

By default, debug messages for this plugin are hidden.

To show them, run the following command:

window.DEBUG.enable('frontmatter-markdown-links');

For more details, refer to the documentation.

Support

Buy Me A Coffee

My other Obsidian resources

See my other Obsidian resources.

License

© Michael Naumov