A simple solution. In tiddlywiki.com

   1. create three tiddler tagged with *x*
   2. create four tiddler tagged with* y*
   3. Copy and paste the below code in another tiddler 

\define numTids()
<$list filter=<<tags>> variable="tagName">
<$count filter="[tag<tagName>]" />_._._<<tagName>>
</$list>
\end

\define listTags(tags)
<$vars tags=<<__tags__>> >
<$wikify name="mylist" text=<<numTids>> >
<$list filter="[enlist<mylist>!sortan[]]" variable="item">
<$list filter="[<item>splitbefore[_._._]removesuffix[_._._]]" 
variable="number">
<$list filter="[<item>removeprefix<number>removeprefix[_._._]]" 
variable="name">
<<name>> <<number>><br>
</$list>
</$list>
</$list>
</$wikify>
</$vars>
\end

<<listTags "x y">>


Look at the results

y 4
x 3

It works!

--Mohammad

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/74060a75-5c6f-431d-ac0e-9a70a90a222d%40googlegroups.com.

Reply via email to