Module:Separated entries: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Izkala |
meta>Izkala |
||
Line 4: | Line 4: | ||
function p.main(frame) | function p.main(frame) | ||
local args = getArgs(frame, { | local args = getArgs(frame, { | ||
trim = true, | |||
removeBlanks = true | |||
}) | }) | ||
return p._main(args) | return p._main(args) | ||
Line 18: | Line 18: | ||
-- Discard named parameters. | -- Discard named parameters. | ||
if type(k) == 'number' then | if type(k) == 'number' then | ||
table.insert(args, | table.insert(args, v) | ||
end | end | ||
end | end |
Revision as of 11:34, 1 May 2015
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