Go to file
2021-10-01 12:23:57 -04:00
.github/workflows ci: set up GitHub action 2021-06-21 19:55:50 -04:00
.phan ci: set up composer 2021-06-21 19:55:06 -04:00
bin ci: set up composer 2021-06-21 19:55:06 -04:00
i18n feat: initial refactor into TabberNeue 2021-06-21 13:49:47 -04:00
includes refactor: change md5 config name to be more clear 2021-10-01 12:23:57 -04:00
modules refactor: change md5 config name to be more clear 2021-10-01 12:23:57 -04:00
.eslintignore ci: setup ESlint and Stylelint 2021-06-21 14:35:54 -04:00
.eslintrc.json ci: remove jQuery support since it is not needed 2021-06-21 17:15:13 -04:00
.gitignore ci: setup ESlint and Stylelint 2021-06-21 14:35:54 -04:00
.phpcs.xml feat: initial refactor into TabberNeue 2021-06-21 13:49:47 -04:00
.stylelintrc.json ci: setup ESlint and Stylelint 2021-06-21 14:35:54 -04:00
CODE_OF_CONDUCT.md ci: set up composer 2021-06-21 19:55:06 -04:00
composer.json ci: set up composer 2021-06-21 19:55:06 -04:00
extension.json refactor: change md5 config name to be more clear 2021-10-01 12:23:57 -04:00
LICENSE Add license and update author field. 2015-03-10 16:01:41 -05:00
package-lock.json ci: lint code to MediaWiki standards 2021-06-21 23:56:28 +00:00
package.json ci: enable ES6 support for ESLint 2021-06-21 14:47:26 -04:00
README.md feat: add config to disable MD5 hash (#6) 2021-10-01 12:20:00 -04:00

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 a complete replacement of Tabber, please disable or remove Tabber before enabling TabberNeue.

Extension:TabberNeue on MediaWiki.

Requirements

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|}}}
}}

Configurations

Name Description Values Default
$wgTabberNeueMD5Hash Enable or disable appending unique MD5 hash key to tabs. Disable if you need permalink to specific tabs. true; false true