Jump to content

Extension:Tabber/ko

From mediawiki.org
This page is a translated version of the page Extension:Tabber and the translation is 0% complete.
미디어위키 확장 기능 설명서
Tabber
출시 상태: 안정
구현 태그 , 파서 함수
설명 Create pages with "Tabs" to dynamically switch between content
만든 이 Eric Fortin, Alexia E. Smith
유지 보수자 TheKittyCat, MESLewis
최신 버전 2.4.5 (2026-04-07)
호환성 정책 스냅샷은 미디어위키와 함께 릴리스됩니다. Master is not backward compatible.
MediaWiki 1.29+
PHP 5.6+
Licence GNU General Public License 3.0 or later
다운로드
Tabber 확장 기능 번역 (translatewiki.net에서 가능한 경우)

The Tabber extension can assign blocks of content to specified tabs and allow users to dynamically switch between them.

Source code
Source code at GitHub
Bugs
Issue tracker at GitHub
Licensing
Tabber is released under The GNU General Public License, version 3.0.

Installation


  • 파일을 Download하고 Tabber 폴더를 extensions/ 디렉토리에 넣어 주세요.
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'Tabber' );
    
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

Usage

Tabs are created as follows: <tabName>=<tabBody>

Tabs are 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>

Multiple word tabs

Add &nbsp; between words. Example:

<tabber>
 multiple&amp;nbsp;word&amp;nbsp;tab=Some neat text here
</tabber>

Parser functions and conditionals

<tabber>
Tab1 = {{{1|}}}
|-|
Tab2 = {{{2|}}}
</tabber>

Becomes:

{{#tag:tabber|
Tab1={{{1|}}}
{{!}}-{{!}}
Tab2={{{2|}}}
}}

Issues

  • Section editing does not work in Tabbers. If one or more section headers appear in a Tabber, use __NOEDITSECTION__ on that page.

See also