跳转到内容

模組:Road data/size

维基百科,自由的百科全书

这是本页的一个历史版本,由Tjmj留言 | 贡献2022年7月31日 (日) 16:41 (參考EN維基2022-07-28T08:00:51版本)编辑。这可能和当前版本存在着巨大的差异。

local p = {}

require('Module:No globals')
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