So I just tried this button to delete a field from any tiddlers that have the field and what-do-ya-know it worked. It uses a list inside a button which I don’t recall seeing documented. Did I invent something new, or does everyone already know this except me? Any caveats or side-effects?
Edit: Caveat #1 - Don’t be like me - disable timestamps unless you really want to change the modified
field in every tiddler in the list.
<$button>
<$list filter="[has[revision]]">
<$action-deletefield $tiddler=<<currentTiddler>> $field=revision/>
</$list>
Delete "revision" Field
</$button>