Jump to content

Module:Separated entries/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Izkala (talk | contribs) at 12:16, 15 May 2015 (To confirm a suspicion, will revert momentarily). 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 = false,
		removeBlanks = true
	})
	return p._main(args)
end
 
function p._main(args)
	local separator = args.separator
		-- Decode (convert to Unicode) HTML escape sequences, such as " " for space.
		and mw.text.decode(args.separator) or ''
	local conjunction = args.conjunction and mw.text.decode(args.conjunction) or separator
	-- Discard named parameters.
	local values = compressSparseArray(args)

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