Hi All
I'm trying to create a button which pressing it creates a tiddler tagged with the title of the tiddler where the button resides. So I have a tiddler named "New Tiddler" with a button. Once I click this button I want to get a new tiddler tagged "New Tiddler".
I cam this far:
<$button> <$action-sendmessage $message="tm-new-tiddler" title=<<now "YYYY-0MM-0DD hh:0mm">> text="" tags={{!!title}} /> New Tiddler </$button>But that gives two tags "New" and "Tiddler", and using the following:
<$button> <$action-sendmessage $message="tm-new-tiddler" title=<<now "YYYY-0MM-0DD hh:0mm">> text="" tags=[[{{!!title}}]] /> New Tiddler </$button>Tags it with "{{!!title}}"...
Regards,
Geert