> Is it possible to do something like <<tagging exclude:"sometag">>
> already??

The TWCore <<tagging>> macro currently doesn't support filtering.

To create lists of tiddlers based on combinations of tags, you can use
   http://www.TiddlyTools.com/#MatchTagsPlugin

To re-create the bullet-list output of the TWCore <<tagging>> macro,
you can write:
   <<matchTags "*[[%0]]" "\n" {{tiddler.title}}>>

To exclude any tiddlers tagged with a specific tag value, write:
   <<matchTags "*[[%0]]" "\n" {{tiddler.title+" AND NOT sometag"}}>>

<<matchTags>> also allows you to write much more sophisticated "tag
expressions" that perform complex filtering.

For example, to exclude tiddlers based on a SET of tag values, you
could write:
   <<matchTags "*[[%0]]" "\n" {{tiddler.title+" AND NOT (sometag OR
someothertag OR ...)"}}>>
which will exclude tiddlers tagged with at least one of the specified
tag values.

You could also write:
   <<matchTags "*[[%0]]" "\n" {{tiddler.title+" AND NOT (sometag AND
someothertag AND ...)"}}>>
which will exclude only those tiddlers that are tagged with *all* of
the indicated values.

enjoy,
-e

-- 
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