I have a simple macro to count number of tiddlers under a input filter. Title is countTiddlers.
It is tagged with
The content is:
\define countTiddlers(filter)
<$count filter="[$filter$]"/>
\end
Now, from a different tiddler, I access that macro.
<<countTiddlers tag[Tag Tiddler Title With Space]>>
If the tag tiddler title has space, it doesn't work. Also, it didn't work for title[Tiddler Title With Space] and other filters with spaces.
As a test, is[system], tag[TagTiddlerTitleWithoutSpace] and any other filters without spaces work fine.
So, is there anything I did wrong here? Or, is there anyway to get around it?