When I hit the "New Quote" button embedded in all my book tiddlers, I want to get a new tiddler tagged with (1) the title of the currentTiddler, (2) the variable contained in the author field and (3) the word "quote".
I searched and tried all kinds of permutations for 2 hours but can't figure it out. The version below makes a tag for every word of the tiddler title and the author field, besides creating a weird field. :P
<$list filter="[<currentTiddler>prefix[Book -]]">
<$button>
<$action-sendmessage $message="tm-new-tiddler" title=<<now "YYYY.0MM.0DD.0hh0mm0ss QUOTE - ">> tags= <<currentTiddler>> <<author>> quote />
New Quote
</$button>
<$list filter="[tag<currentTiddler>!sort[title]]">
<h2><$link><$transclude field="title" mode="block"/></$link></h2>
<$transclude field="text" mode="block"/>
</$list>
</$list>