Considering:
There are 3 tiddlers tagged class/a
.
The text field is different for each tiddler.
The search yields all tiddlers searched for.
<$list filter="[tag[class/a]get[text]] +[addsuffix[/]]" variable="prefix">
<$list filter="[prefix<prefix>] +[search:{!!search}] +[count[]]" variable="search-list">
<<search-list>>
</$list></$list>
The result is a total count for each prefix, so in this case 3 results. The results are correct. But I would like to get 1 result with a total count of all prefixes together.
How can I do that?