跳转到内容

模块:Separated entries:修订间差异

来自大巴扎百科
imported>Whaterss
建立内容为“local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame, { removeBlanks = true, tr...”的新页面
 
imported>Jc86035
无编辑摘要
第19行: 第19行:
if type(k) == 'number' then
if type(k) == 'number' then
table.insert(args, mw.text.trim(v))
table.insert(args, mw.text.trim(v))
end
end
return mw.text.listToText(args, separator, conjunction)
end
function p.notrim(frame)
local args = getArgs(frame, {
removeBlanks = true,
trim = false
})
return p._notrim(args)
end
function p._notrim(origArgs)
local separator = origArgs.separator or ''
local conjunction = origArgs.conjunction or separator
args = {}
for k, v in pairs(origArgs) do
-- Discard named parameters.
if type(k) == 'number' then
table.insert(args, v)
end
end
end
end

2015年5月12日 (二) 10:53的版本

此模块的文档可以在模块:Separated entries/doc创建

local getArgs = require('Module:Arguments').getArgs
local p = {}
 
function p.main(frame)
	local args = getArgs(frame, {
		removeBlanks = true,
		trim = false
	})
	return p._main(args)
end
 
function p._main(origArgs)
	local separator = origArgs.separator or ''
	local conjunction = origArgs.conjunction or separator

	args = {}
	for k, v in pairs(origArgs) do
		-- Discard named parameters.
		if type(k) == 'number' then
			table.insert(args, mw.text.trim(v))
		end
	end
	return mw.text.listToText(args, separator, conjunction)
end

return p