Module:Infobox Item

From Guinea Isles Wiki
Revision as of 06:23, 19 September 2025 by Squeaky (talk | contribs)

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

--------------------------
-- Module for [[Template:Infobox Item]]
------------------------
local p = {}

local infobox = require('Module:Infobox')
local capiunto = require 'capiunto'

function p.main(frame)
	local args = frame:getParent().args
	local ret = infobox.main(args)
	
	return ret
end

return p