Raft Wiki
Register
mNo edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
 
function p.infobox( f )
 
function p.infobox( f )
 
local args = require( 'Module:ProcessArgs' ).merge( true )
 
local args = require( 'Module:ProcessArgs' ).merge( true )
  +
  +
local infoboxOutput = {}
  +
  +
table.insert(infoboxOutput, '<div class="infobox">')
  +
  +
return table.concat(infoboxOutput)
 
end
 
end
 
return p
 
return p

Latest revision as of 21:07, 18 February 2022

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

local p = {}
	function p.infobox( f )
		local args = require( 'Module:ProcessArgs' ).merge( true )
		
		local infoboxOutput = {}
		
		table.insert(infoboxOutput, '<div class="infobox">')
		
		return table.concat(infoboxOutput)
	end
return p