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?
Topic on Extension talk:TabberNeue
Appearance
I have the same Issue, so if there is someone who could help, it would help us both :)
It's been a bit but I think I solved this before by using the {{#tag:tabber|...}}
parser.
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...
This is implemented in the latest version