Module:Element List: Difference between revisions

From OMORI Wiki
Jump to navigation Jump to search
(attempting to fix navbox)
(No difference)

Revision as of 07:35, 16 June 2021

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

local p = {}

function p.main(...)
	local args = ...
	local sep = args["s"]
	args["s"] = nil
	return table.concat(args,sep)
end

return p