Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tiddlywiki: make a list of all tiddlers tagged with name of current tiddler

If I have a tiddler named "X", I know I can make a list of all tiddlers tagged with "X" by using <<list-links filter:"[tag[X]] +[sort[title]]">>. Is there a way to make a no-brainer macro which automatically finds all tiddlers nested under the current tiddler without manually specifying the title field?

like image 620
crypdick Avatar asked Mar 26 '17 23:03

crypdick


2 Answers

Use this in your macro: <<list-links filter:"[tag<currentTiddler>] +[sort[title]]">>

like image 182
crypdick Avatar answered Nov 12 '22 18:11

crypdick


Or another one: <<list-links "[all[current]tagging[]]">>

like image 4
Arlen Beiler Avatar answered Nov 12 '22 17:11

Arlen Beiler