Module:Element List

From OMORI Wiki
Revision as of 09:03, 16 June 2021 by SolarScar (talk | contribs)
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
		argsc[i] = v
	end
	local sep = argsc["s"]
	argsc["s"] = nil
	return table.concat(argsc,sep)
end

return p