> Unfortunately my current and mature tiddlyWiki I have used tags beginning
> with characters that are valid in tags and titles such as "." "@", "-", ":"
> these had the added advantage appearing together in the list of tags.
> However as raised in previous posts MatchTags does not handle them well.
Using only inline script, without using MatchTagsPlugin, you can write
something like this:
<script>
var tids=store.getTiddlers();
var match=['.projecttask'];
var exclude=['-=inactive','-=closed'];
for (var i=0; i<tids.length; i++)
if (tids[i].tags.containsAll(match)
&& !tids[i].tags.containsAny(exclude)
store.setTiddlerTag(tids[i].title,true,'selected');
</script>
-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
-~----------~----~----~----~------~----~------~--~---