Module:Separated entries
From Zoophilia Wiki
Documentation for this module may be created at Module:Separated entries/doc
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame, {
trim = true,
removeBlanks = true
})
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, v)
end
end
return mw.text.listToText(args, separator, conjunction)
end
return p