I'm trying to work out a filter that will take in a list of tiddlers as input, and output a list of all tiddlers that are listed in all of the input's list fields. To basically, if you had this:
Tiddler1!!list = TiddlerA TiddlerD Tiddler F
Tiddler2!!list = TiddlerE
Tiddler3!!list = TiddlerB TiddlerC
...you could then do this:
Tiddler1 Tiddler2 Tiddler3 --> MAGIC FILTER --> TiddlerA TiddlerD TiddlerF TiddlerE TiddlerB TiddlerC
I realize that I could accomplish something similar by using nested $lists, but I'd like to get it squeezed into one filter so that I can sort the output.
Any ideas?