description: A backlink reference showing everywhere a page is linked from.
Linked mentions (also known as backlinks) show all pages that contain a Link|link to the current page. They appear as a "Linked Mentions" section at the bottom of every page that has incoming links.
SilverBullet's Object Index tracks all links between pages. The Linked Mentions widget queries this index to find pages that link to the page you're currently viewing, then displays them with a snippet of the surrounding context.
This allows for easy navigation and helps you discover connections between concepts through these bi-directional links.
In a traditional notes app, links are one-directional: page A links to page B, but page B has no idea. With linked mentions, every link becomes bi-directional. This means:
You can enable or disable the Linked Mentions widget in CONFIG:
-- Disable linked mentions widget
config.set("std.widgets.linkedMentions.enabled", false)
You can query linked mentions directly using Space Lua/Lua Integrated Query:
query[
from l = tags.link
where l.toPage == "Some Page"
order by l.pageLastModified desc
](
from l = tags.link
where l.toPage == "Some Page"
order by l.pageLastModified desc
)
See also: Link, Linked Tasks, Object/link