Jump to content

Module:Infobox/styles.css

From nUSA Wiki
Revision as of 16:50, 2 January 2025 by Jord (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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