Hi,
I've got a template that I call from the <<tabs>> macro (developed based on advice from morosanuae):
<$transclude tiddler=<<currentTab>> field="caption" />
<$button>
<$action-navigate $to=<<currentTab>> />
<$action-sendmessage $message="tm-edit-tiddler" $param=<<currentTab>> />
<i class="fas fa-pen-square"></i>
</$button>
Simply put, it adds a button (with a FontAwesome pen icon) to each tab which provides a one-click means of opens the tab's content tiddler for editing below the current tiddler.
However… I want to be able to apply a different template to one specific tab, based on the tiddler's title (i.e. Blank). How do I achieve that?
I have tried using <$reveal …> based on another question, but that didn't do what I wanted.
Any suggestion appreciated