There must be a smarter solution, but you can try this macro definition: \define tagging(title:"<<currentTiddler>>") <$set name="myTitle" value=$title$>
<<myTitle>> <$list filter="[title<myTitle>tagging[]]"> </$list> </$set> \end However for it to work with a title, you need to use a trick: All content for current tiddler... <<tagging>> All content for Class B... <<tagging "'Class B'">> Do you see it? The parameter with the title of the tiddler also contains ticks, so that the value of the set widget is interpreted correctly (it should be value=<<currentTiddler>> in one case and value="title" in the second, so the $title$ substitution can't do both at the same time). -- 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 post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

