模組:Road data/size
閱讀設定
模組解[開]
你可能想去為呢個Scribunto module開一個解版。 編者可以響呢個模組嘅沙盤 (開 | 鏡)同埋試例 (開)版度試驗佢。 請加個類到個/doc嘅細版度。 呢個模組嘅細版。 |
local p = {}
require('strict')
local getArgs = require('Module:Arguments').getArgs
local format = mw.ustring.format
local function main(args)
local style = args.style
if style == 'infobox' then
return '70px'
elseif style == 'small' then
return '40px'
elseif style == 'list' then
return '25px'
elseif style == 'rdt' then
return '17px'
elseif style == 'jcttest' then
return '24'
else return '20px'
end
end
function p._size(args)
return main(args)
end
function p.size(frame)
local args = getArgs(frame)
return p._size(args);
end
return p