模块:Gallery

来自决策链云智库
Zeroclanzhang讨论 | 贡献2023年7月21日 (五) 22:33的版本 (创建页面,内容为“local getArgs = require('Module:Arguments').getArgs local p = {} local root function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local filearg = '' local height = '120' local prependarg = '[[File:' local apprendarg = '|center|frameless|' .. 'x' .. height .. 'px]]' for key,value in pairs(args) do filearg = filearg .. '<td>' .. prependarg .. args[key] .. apprendarg .. '</td>' end root = mw.html.cr…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

Module:Gallery is a module that implements the {{Gallery}} template. Please see the template page for usage instructions.


local getArgs = require('Module:Arguments').getArgs
local p = {}
local root

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local filearg = ''
	local height = '120'
	local prependarg = '[[File:'
	local apprendarg = '|center|frameless|' .. 'x' .. height .. 'px]]'
	
	for key,value in pairs(args) do
	    	filearg = filearg .. '<td>' .. prependarg .. args[key] .. apprendarg .. '</td>'
	end
	
	root = mw.html.create('table')
	root
		:addClass('gallerytable')
		:tag('tr')
			:wikitext( filearg )
	
	return tostring(root)
end

return p