[TW5] How to use standard TW5 tabs if the tiddler has spaces in the name?

I have TW 5.2.2 on Windows, and use the Chrome browser.

I’ve tried these options.

<<tabs "Acctg - Payroll Graphs Log" "Acctg - Payroll Graphs Log" "$:/state/tab1">>

This options gives me 5 tabs, one for each symbol or word separated by a space.

<<tabs "[Acctg - Payroll Graphs Log]" "[Acctg - Payroll Graphs Log]" "$:/state/tab1">>

This option gives me an error: "Filter error: Missing [ in filter expression"

I’d prefer to use horizontal tabs across the page. But I can do vertical tabs if I need to.

Or is there another tab addon that I should be using?

Thank you. :slight_smile:

EDIT: I got it. I had to use [[my stuff]] like this:

<<tabs "[[Acctg - Payroll Graphs Log]]" "[[Acctg - Payroll Graphs Log]]" "$:/state/tab1">>

Try this,

<<tabs "[[Acctg - Payroll Graphs Log]] [[Acctg - Payroll Graphs Log]]" "$:/state/tab1">>

Assuming the parameter order is correct. Keep all the tab titles inside one parameter

Note that the first three parameters for the <<tabs>> macro are <<tabs tabsList default state ...>>. Thus, in the code posted by @C_Bacca, there is only ONE tab: [[Acctg - Payroll Graphs Log]], which is specified twice. Once as the value for tabsList and again as the value for default.