> That is not exactly what I want to do.
> Here is an example :http://fet-grouped-by-tags-set.tiddlyspot.com/
> password is : patuch
whatever's solution skips over tiddlers that have any of the 'noisy'
tags. However, what you want to do is still output information about
the tiddlers that have those tags while simply omitting the noisy tags
from the display. To do this, you need to modify the
"getSortedTagsText(tiddler)" function, so that the noisy tags are not
included in the resulting 'tags text'.
Replace this:
for (var i = 0; i < tags.length;i++) {
result += tags[i]+ " ";
}
with this:
for (var i = 0; i < tags.length;i++) {
if (!["noise1","noise2"].contains(tags[i])) result += tags[i]+
" ";
}
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
http://www.TiddlyTools.com/#Donations
Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#Contact
--
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.