模块: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