--
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 tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com.
Actually, I realized set widget will do it for me, as described in http://tiddlywiki.com/static/SetWidget (see “Filtered List Variable Assignment”).
However, can anybody explain why this does not work as expected (assuming currentTiddler title contains spaces)
<$set name=myVariable filter="[[$(currentTiddler)$]] [[another one]]">
<$text text=<<myVariable>>/>
</$set>
but this does:
<$set name=myVariable filter="[all[current]] [[another one]]">
<$text text=<<myVariable>>/>
</$set>
I should have just used [<currentTiddler>] instead of [[$(currentTiddler)$]]. Not sure what the deal with the latter is. Used in a list filter, it causes too much recursion.