Modulo:AIRBox
Versione del 29 mag 2023 alle 10:01 di Acquisti in Rete (discussione | contributi)
La documentazione per questo modulo può essere creata in Modulo:AIRBox/man
-- Nome del modulo: AIRBox
local p = {}
function p.renderBox(frame)
local args = frame.args
local titolo = args.titolo or "Da sapere che"
local testo = args.testo or ""
local icona = args.icona or ""
local output = mw.html.create('div')
output:addClass('multibox')
if titolo ~= "ciaone" then
local header = mw.html.create('div')
header:addClass('box-header')
header:wikitext(titolo)
output:node(header)
end
local body = mw.html.create('div')
body:addClass('box-body')
if icona ~= "" then
local icon = mw.html.create('div')
icon:addClass('box-icon')
icon:wikitext(icona)
body:node(icon)
end
local expandedText = frame:preprocess(testo)
body:wikitext(expandedText)
output:node(body)
return tostring(output)
end
return p