Hi everyone!
Below is the snippet for my "New tab here" button. It creates a new tiddler, with the title of the parent tiddler as the title and the tag of the child tiddler. A tabs macro in the parent tiddler displays the children tiddlers as tabs.
The only problem I have is that the child tiddlers inherit the tags of the parent. I would like for that behavior to stop.
What do I need to delete, add or change for that to happen? I tried various things but nothing worked. I appreciate any help I can get. Blessings.
\whitespace trim
\define newHereActions()
<$set name="tags" filter="[<currentTiddler>] [{$:/config/NewTiddler/Tags!!tags}]">
<$action-sendmessage $message="tm-new-tiddler" $param=<<currentTiddler>> tags="" tags=<<tags>> text="* " caption="" meta="note"/>
</$set>
\end
\define newHereButton()
<$button actions=<<newHereActions>> tooltip={{$:/language/Buttons/NewHere/Hint}} aria-label={{$:/language/Buttons/NewHere/Caption}} class=<<tv-config-toolbar-class>>>
<$list filter="[<tv-config-toolbar-icons>match[yes]]">
{{$:/core/images/folder}}
</$list>
<$list filter="[<tv-config-toolbar-text>match[yes]]">
<span class="tc-btn-text">
<$text text={{$:/language/Buttons/NewHere/Caption}}/>
</span>
</$list>
</$button>
\end
<<newHereButton>>