6d75ef421c
Check commit and GitHub actions for more details |
||
---|---|---|
.github/workflows | ||
.phan | ||
bin | ||
i18n | ||
includes | ||
modules | ||
.eslintignore | ||
.eslintrc.json | ||
.gitignore | ||
.phpcs.xml | ||
.stylelintrc.json | ||
CODE_OF_CONDUCT.md | ||
composer.json | ||
extension.json | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md |
TabberNeue
The TabberNeue extension allows wikis to create tabs within a page. It is a rewritten and forked version of Extension:Tabber. It includes multiple improvements such as responsive layout support, ARIA support, and conform to Wikimedia UI. TabberNeue is not compatible with Tabber, please disable or remove Tabber before installing TabberNeue.
Extension:TabberNeue on MediaWiki.
Requirements
- MediaWiki 1.35 or later
Installation
You can get the extension via Git (specifying TabberNeue as the destination directory):
git clone https://github.com/StarCitizenTools/mediawiki-extensions-TabberNeue.git TabberNeue
Or download it as zip archive.
In either case, the "TabberNeue" extension should end up in the "extensions" directory of your MediaWiki installation. If you got the zip archive, you will need to put it into a directory called TabberNeue.
Usage
TabberNeue uses the exact same syntax as Tabber.
Tabs are created with tabName=tabBody
, and separated by |-|
.
<tabber>
tab1=Some neat text here
|-|
tab2=
[http://www.google.com Google]<br/>
[http://www.cnn.com Cnn]<br/>
|-|
tab3={{Template:SomeTemplate}}
</tabber>
Parser functions and conditionals
<tabber>
Tab1 = {{{1|}}}
|-|
Tab2 = {{{2|}}}
</tabber>
Becomes:
{{#tag:tabber|
Tab1={{{1|}}}
{{!}}-{{!}}
Tab2={{{2|}}}
}}