mirror of
https://github.com/flancian/garden.git
synced 2026-08-07 06:56:19 +00:00
14 lines
314 B
Markdown
14 lines
314 B
Markdown
---
|
|
description: Adds Linked Mentions to pages
|
|
tags: template
|
|
hooks.bottom.where: 'true'
|
|
---
|
|
{{#let @linkedMentions = {link where toPage = @page.name and page != @page.name order by page}}}
|
|
{{#if @linkedMentions}}
|
|
# Linked Mentions
|
|
{{#each @linkedMentions}}
|
|
* [[{{ref}}]]: `{{snippet}}`
|
|
{{/each}}
|
|
{{/if}}
|
|
{{/let}}
|