Module:GuyPerfect

From Inkipedia, the Splatoon wiki

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

function Infobox(frame)
	local ret = ""
	for k,v in frame:argumentPairs() do
		ret = ret .. k .. " = " .. v .. "<br>"
	end
	return ret
end

-- Module
return {
    infobox = Infobox
}