I see that
I can transclude tiddlers with a specific tag using
<$list filter="[tag[TagNameHere]]">
! <$transclude field="title"/>
<$transclude mode="block"/>
I can also make lists of tiddlers using the current title using <currentTiddler>:
<<list-links filter:"[tag<currentTiddler>] +[sort[title]]">>
... but if I try to use the <currentTiddler> magic with the transclude code, it doesn't work:
<$list filter="[tag[<currentTiddler>]]">! <$transclude field="title"/>
<$transclude mode="block"/>
I've tried using the tag<currentTiddler> syntax but I get an error that I'm missing the brackets. I don't get why this wouldn't work.