모듈:Su/설명문서
보이기
< 모듈:Su
이 문서는 모듈:Su에 대한 설명문서입니다.
이 모듈은 {{su}} 틀의 구현체입니다.
위키텍스트에서의 사용법
이 모듈을 위키텍스트에서 바로 사용하지 마세요. {{su}} 등의 다른 틀을 이용하시기 바랍니다. This module cannot be used directly from wikitext. It can only be used through a template, usually the {{su}} template. Please see the template page for documentation.
루아 모듈에서의 사용법
To use this module from other Lua modules, first load the module.
local mSu = require('Module:Su')You can then generate the su links by using the _main function.
mSu._main(sup, sub, options)sup is the contents of the top line, and sub is the contents of the bottom line. options is a table that can contain the following fields:
align- this can be set to "r" or "right" for right-alignment, and "c" or "center" for center-alignment. Anything else will make the output left-aligned. Must be a string value.fontSize- the font size of the text, e.g. "90%". If set to "f" or "fixed", the module will output a fixed-width font at 85%. Must be a string value.
All arguments are optional.
예제
| 코드 | 결과 |
|---|---|
mSu._main('top-line text', 'bottom-line text')
|
top-line text bottom-line text |
mSu._main('top-line text', 'bottom-line text', {fontSize = '100%'})
|
top-line text bottom-line text |
mSu._main('top-line text', 'bottom-line text', {fontSize = 'f'})
|
top-line text bottom-line text |
mSu._main('top-line text', 'bottom-line text', {align = 'r'})
|
top-line text bottom-line text |
mSu._main('top-line text', 'bottom-line text', {align = 'c'})
|
top-line text bottom-line text |
mSu._main('top-line text')
|
top-line text |
mSu._main(nil, 'bottom-line text')
|
bottom-line text |