Topic on Extension talk:TabberNeue

How to use mediawiki syntax as tab title?

5
2A06:C701:9CBC:8100:2DCD:992C:DA60:BA27 (talkcontribs)

Hey, I'm trying to have a dynamic tab titles, so it gets the title by template params, such as "tab1title", but the syntax does not parse and remain like "{{{tab1title}}}", what should I do?

217.149.174.47 (talkcontribs)

I have the same Issue, so if there is someone who could help, it would help us both :)

104.225.228.149 (talkcontribs)

It's been a bit but I think I solved this before by using the {{#tag:tabber|...}} parser.

Filburt (talkcontribs)

Hi, I had the same problem with internationalization, i.e. {{int:my custom message}}

I changed the following in /includes/Tabber.php line 123:

before:

$tabName = $parser->getTargetLanguageConverter()->convertHtml( trim( $tabName ) );

after:

$tabName = $parser->recursiveTagParseFully( $tabName );
$tabName = $parser->stripOuterParagraph( $tabName );

That works for me (MW 1.41).

Hope it helps...

Alistair3149 (talkcontribs)

This is implemented in the latest version

Reply to "How to use mediawiki syntax as tab title?"