David,

When creating the new tiddler you have the parameter  tags=<<tags>>  so no 
wonder it inherits the tags. 
Perhaps change it to tags=<<currentTiddler>> ?

Tones

On Sunday, 29 November 2020 at 01:36:11 UTC+11 David Gifford wrote:

> 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>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/87a28563-8b94-4a02-9c7d-3199be2fa74an%40googlegroups.com.

Reply via email to