Module:Infobox/styles.css
Documentation for this module may be created at Module:Infobox/styles.css/doc
-- Example Lua script for infobox logic
local infobox = {}
function infobox.create(params)
local content = mw.html.create('div')
content:addClass('infobox-subbox')
content:wikitext(params.content)
return tostring(content)
end
return infobox