Go to file
github-actions 6d75ef421c ci: lint code to MediaWiki standards
Check commit and GitHub actions for more details
2021-06-21 23:56:28 +00: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 ci: lint code to MediaWiki standards 2021-06-21 23:56:28 +00:00
modules refactor: rename Tabber classes to be more semantic 2021-06-21 19:46:17 -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 build: bump to 0.1.0 2021-06-21 17:15:46 -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 docs: add note on being not compatible with Tabber 2021-06-21 14:00:44 -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 not compatible with Tabber, please disable or remove Tabber before installing 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|}}}
}}