Hi,
how can i get a list of all tiddlers with a title matching any of the tags on the current tiddler
so in a way the opposite of this
[all[current]tagging[]]
so instead of getting all tiddlers tagged with current tiddler , get all tiddlers the current tiddler is tagged with
Thank you
Try this out: [enlist{!!tags}is[tiddler]]
One subtle issue here: there are some tiddlers whose tags refer to shadow tiddlers. To see a list of all “shadow tags” that are actually in use, you can write:
<$list filter="[tags[]is[shadow]]"><<tag>></$list>
To include these “shadow tags” in the results of your filter, instead of
[enlist{!!tags}is[tiddler]]
you could write
[enlist{!!tags}is[tiddler]] [enlist{!!tags}is[shadow]]
which can also be written more succinctly and efficiently as
[enlist{!!tags}has[title]]
because “has[title]” is effectively equivalent to “is[tiddler] OR is[shadow]”
-e
What happens here if the tag exists but it does not have its corresponding tiddlers?