2024-01-21 02:16:07 +08:00
|
|
|
---
|
|
|
|
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
|
2024-02-03 02:19:07 +08:00
|
|
|
task where name =~ /\[\[{{escapeRegexp(@page.name)}}\]\]/ where done = false render [[Library/Core/Query/Task]]
|
2024-01-21 02:16:07 +08:00
|
|
|
```
|