Module:GuyPerfect

From Inkipedia, the Splatoon wiki
Revision as of 22:27, 5 September 2022 by GuyPerfect (talk | contribs)

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

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

-- Module
return {
    infobox = Infobox
}