Module:Infobox Item: Difference between revisions

From Guinea Isles Wiki
No edit summary
No edit summary
Line 2: Line 2:
-- Module for [[Template:Infobox Item]]
-- Module for [[Template:Infobox Item]]
------------------------
------------------------
local p = {}
local infobox = require('Module:Infobox')
local infobox = require('Module:Infobox')
local capiunto = require 'capiunto'
local capiunto = require 'capiunto'
local p = {}


function p.main(frame)
function p.main(frame)

Revision as of 06:27, 19 September 2025

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

--------------------------
-- Module for [[Template:Infobox Item]]
------------------------
local infobox = require('Module:Infobox')
local capiunto = require 'capiunto'

local p = {}

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

return p