Jump to content

Module:Infobox

From SFFA Wiki

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

local p = {}

function p.base_infobox(frame)
	local base_infobox = mw.html.create('table')
		:tag('tr')
			:tag('th')
				:wikitext('Header')
			:done()
			:tag('tr')
				:tag('td')
					:wikitext("body")
				:done()
			:done()
			
	return tostring(base_infobox)
end

return p