I have the following filter to select all the tiddlers that have one or more tags matching the values in the list variable my-tags
:
[enlist<my-tags>] :map:flat[all[tiddlers]tag<currentTiddler>] +[unique[]sort[]]
Am I missing something simpler to handle this? It feels as though there’s probably something built in.
You could test it by adding this to a tiddler on tiddlywiki.com:
<$let my-tags="Features Filters Languages">
<<list-links filter:"[enlist<my-tags>] :map:flat[all[tiddlers]tag<currentTiddler>] +[unique[]sort[]]" >>
</$let>
It should show you all tiddlers tagged Features
, Filters
, or Languages
.