I use something like this in the sidebar for editing, with a button to detach. Type or paste the tiddler title and the markup appears. A major time-saver for me, now I only use the regular editor for tags and fields. Very simple though—no toolbar & bypasses the “Draft of” state.
In a tiddler titled “Edit Tiddler” tagged $:/tags/SideBarSegment, positioned just below $:/core/ui/SideBarSegments/site-subtitle:
<style> .wide1 { width: 100%; } </style>
<details>
<summary>''Edit Tiddler''
<$button class="tc-btn-invisible">
<$action-sendmessage
$message="tm-open-window"
template="Edit Tiddler"
windowTitle="Edit Tiddler"
width="500"
height="645" />
<span>{{$:/core/images/open-window}}</span>
</$button>
</summary>
<p>''Tiddler Title''</p>
<p><$edit-text tiddler="Edit Tiddler" field="TiddlerTitle" size="35" /></p>
<p>''Tiddler Body''</p>
<p><$edit-text tiddler={{Edit Tiddler!!TiddlerTitle}} class="wide1" /></p>
</details>
But experimenting with the contenteditable attribute in TW was very cool, made me really wish I had the ability to edit directly as well.


