mirror of
https://github.com/flancian/garden.git
synced 2026-08-05 22:16:20 +00:00
9 lines
312 B
Markdown
9 lines
312 B
Markdown
---
|
|
tags: template
|
|
description: |
|
|
Shows all tasks that contain a link the current page. For instance a task that references `[[John]]` in its name, would appear on the `John` page.
|
|
---
|
|
|
|
```query
|
|
task where name =~ /\[\[{{escapeRegexp(@page.name)}}\]\]/ where done = false render [[Library/Core/Query/Task]]
|
|
``` |