10 lines
366 B
Markdown
10 lines
366 B
Markdown
---
|
|
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
|
|
task where name =~ /\[\[{{escapeRegexp @page.name}}\]\]/ where done = false render [[template/task]]
|
|
``` |