I have the following code in a tiddler:
<<tabs tabsList:"[tag[Home Tabs]]" default:"NOW ">>
I want to be able to exclude a certain page in the Home Tabs tag from the tab list, while showing all the others. How is this done?
I have the following code in a tiddler:
<<tabs tabsList:"[tag[Home Tabs]]" default:"NOW ">>
I want to be able to exclude a certain page in the Home Tabs tag from the tab list, while showing all the others. How is this done?
To exclude a specific named tiddler (e.g., “SomeTiddler”) from the tabsList
, do this:
<<tabs tabsList:"[tag[Home Tabs]] -[[SomeTiddler]]" default:"NOW ">>
enjoy,
-e