I’m sorry to ask so many questions about filters, but sadly I can’t get around to them yet, despite having studied the documentation several times. This one should be quite easy though:
I want a filter that outputs the list of all tags of a tiddler but excluding from this list the tags that are named in its field
This filter can be found in $:/core/ui/ViewTemplate/tags
:
filter="[all[current]tags[]sort[title]]"
I would like to make a working filter that is something like this:
filter="[all[current]tags[]sort[title]] -[list[current!!test]]
(or <currentTiddler>?)"
Basically if I have a tiddler “A” tagged with Tag1 Tag2 Tag3 Tag4 and in the “test” field i have Tag2 and Tag4 the output of the filter should be Tag1 Tag3.
I hope you understand what I mean