> I would like to add a line to exclude some tags e.g. (in psuedo code)
> where tag contains "task" and tag EXCLUDES "foo".
>
> Is this possible and if so, how?

Yes, you can use the "!" syntax:

where
        'tiddler.tags.contains("task")&&
        ! tiddler.tags.contains("foo")'

Further more, you can do the and/or things like:

        ! tiddler.tags.containsAny(["foo","hi","stop","ok"])'

Btw, why not go to Udo's site? There are tons of examples.

http://tiddlywiki.abego-software.de/#ForEachTiddlerExamples

Cheers,
octw

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to