I want to make the simplest possible comment system - to allow me to add comments to a tiddler
Adding this button to a tiddler makes a new tiddler with a unique name when I click it
<$button>
<$action-createtiddler
$basetitle="comment"
role="comment"
parent=<<currentTiddler>>
/> Click to make a comment
</$button>
When I click I get a new tiddler with a unique name and fields role and parent
so I'll be able to search and find all comments later.
My problem is that after creation the new tiddler is closed - is there a way to display it and open it immediately for editing?
Note: I'm not interested in formatting this nicely with CSS nor attaching the comments and buttons
to the parent tiddler - these are separate problems.
Cheers
/Joe