Giacomo D’angelo17 downloadsAdd a frontmatter property to all notes linking to the current note.

Automatically add a frontmatter property to every note that links to a given note, using that note's name as the value.
This is useful for Zettelkasten/PARA-style vaults where you maintain Maps of Content (MOCs) or hub notes: instead of manually tagging every note that belongs to a MOC, run one command and let the plugin tag all its backlinks for you.
Projects).moc) with the source note's name as the value.The plugin never overwrites data, it only adds to it:
Running the command multiple times on the same note is always safe (idempotent) — it will never create duplicate entries.
Given a note Projects.md, and another note My Idea.md that contains a link [[Projects]]:
Before running the command, My Idea.md might have no frontmatter, or:
---
moc: SomeOtherHub
---
After running the command on Projects.md:
---
moc:
- SomeOtherHub
- Projects
---
moc. Change it to category, hub, or anything that fits your vault's conventions.main.js, manifest.json, and styles.css from the latest release.property-from-backlink inside your vault's .obsidian/plugins/ directory.Requires Obsidian v1.4.4 or later (uses the FileManager.processFrontMatter API).
Maintaining consistent metadata across a growing vault is tedious to do by hand. Property from Backlink automates the repetitive part — tagging every note that links to a hub note — while leaving you full control over the property name and never silently overwriting data you've already added.
0BSD — see LICENSE.