1
0
silverbullet/website/template/tasks/incoming.md

10 lines
366 B
Markdown
Raw Normal View History

2023-11-15 13:56:34 +00:00
---
tags: template
description: |
Shows all tasks that reference (tag) the current page. For instance a task that references `[[John]]` in its name, would appear on the `John` page if it would use this [[sets/tasks/incoming]] template.
order: 2
---
```query
2023-11-21 12:26:48 +00:00
task where name =~ /\[\[{{escapeRegexp @page.name}}\]\]/ where done = false render [[template/task]]
2023-11-15 13:56:34 +00:00
```