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 01:30, 4 May 2015 (Discard named parameters more robustly; accidental global). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local getArgs = require('Module:Arguments').getArgs
local compressSparseArray = require('Module:TableTools').compressSparseArray
local p = {}
 
function p.main(frame)
	local args = getArgs(frame, {
		trim = true,
		removeBlanks = true
	})
	return p._main(args)
end
 
function p._main(args)
	local separator = args.separator or ''
	local conjunction = args.conjunction or separator
	-- Discard named parameters.
	local values = compressSparseArray(args)

	return mw.text.listToText(values, separator, conjunction)
end
 
return p