Jump to content

Module:Separated entries

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Izkala (talk | contribs) at 23:50, 17 April 2015 (Generic implementation of Module:Br separated entries). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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