\define thisList()
<!-- BEGIN: Loop Through a list of tiddlers matching $(thefilter)$ -->
<$list filter="$(thefilter)$">
<!-- For Each Item...count the number of tiddlers tagged with it.. -->
<$view field="title"/> - <$count filter=[tag[!!{{title}}]] /> <br/>
</$list>
\end
<$set name="thefilter" value={{!!dasfilter}}>
<<thisList>>
</$set>
Is it possible to do this? The part that really has me confused is how to get a <$count> that will count the number of tiddlers tagged with the current tag.
As for the data, lets say I had the following:
tiddler tags: red, blue, green
tiddler: tags
apple: tags: red, green
water: tags: blue
sky: tags: blue
ball: red, blue, green
grass: tags: grass
Then it would output:
red - 2
blue - 3
green - 3
I just want to count how many tiddlers within a specific set of tags are tagged with that tag. But I don't want ALL OF THEM like in the tag manager.