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? 回答1: Use this in your macro: <<list-links filter:"[tag<currentTiddler>] +[sort[title]]">> 回答2: Or another one: <<list-links "[all[current]tagging[]]">> 来源: https://stackoverflow.com/questions