Is there a less verbose way to pull this off? I want a tiddler with a simple table of stats, a count of how many tiddlers have a certain tag, a count of how many tiddlers pass or fail a regex, etc. This is what I have currently:
|Total lexicon entries|<$count filter="[tag[lexicon]]"/>|
|Entries needing review|<$count filter="[tag[check]]" />|
|Prefixes|<$count filter="[tag[lexicon]search:title:regexp[.*-$]]" />|
|Suffixes|<$count filter="[tag[lexicon]search:title:regexp[^-.*]]" />|
|Multi-word phrases|<$count filter="[tag[lexicon]search:title:regexp[\s]]" />|
Also, how do I get a math operator expression to display as regular text and not the link to a nonexistent tiddler whose title is a number?
I’ve tried setting this up as a data tiddler (seems like that makes the most sense.
totalEntries: [tag[lexicon]count[]]
and so on, but that just displays the raw text of the filter without evaluating it.