Hi all!
Very basic question:
I have an example tiddler tagged “lion.” When I count the number of tiddlers tagged “lion” with the following, I get the correct count of one:
Number of tiddlers with this tag: <$count filter="
[all[tiddlers]tag[lion]]"/>
but I get a count of zero when I try defining a variable name:
<$set name=animal value="lion">
</$set>
Number of tiddlers with this tag: <$count filter="
[all[tiddlers]tag[<animal>]]"/>
could someone help me see what I’m misunderstanding about passing variables into filters? (This is coming up because of a more complicated filter where I’d like to in pass )
Thanks!