Module:Element List

From OMORI Wiki
Jump to navigation Jump to search

Documentation for this module may be created at Module:Element List/doc

local p = {}

function p.main(frame)
	local args = frame.args
	local argsc = {}
	for i, v in pairs(args) do
		if v~="" then argsc[i] = v end
	end
	local sep = argsc["s"]
	argsc["s"] = nil
	return table.concat(argsc," " .. sep .. " ")
end

return p