Is it possible to clone the current tiddler (including all its contents and, if possible, tags) upon a press of a button? I couldn't find anything relevant in the documentation.What I'm trying to achieve: I have a list of tiddlers tagged 'template' and would like to embed this button within the list so that by clicking a button next to the chosen 'template' tiddler I could create a clone of that template for use.
<$button message="tm-new-tiddler" param="TaskTemplate">New Task</$button>
<$list filter="[tag[template]]">
<$link><$text text=<<currentTiddler>>/></$link>
<$button message="tm-new-tiddler" param=<<currentTiddler>>>
{{$:/core/images/clone-button}}
</$button>
</$list>