Differenze tra le versioni di "Modulo:AIRBox"
m |
m |
||
Riga 17: | Riga 17: | ||
if icona ~= "" then | if icona ~= "" then | ||
local | local iconDiv = mw.html.create('div') | ||
iconDiv:addClass('box-icon') | |||
boxHeader:node(iconDiv) | |||
boxHeader:node( | |||
end | end | ||
Versione delle 10:09, 29 mag 2023
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')
local boxHeader = mw.html.create('div')
boxHeader:addClass('box-header')
if icona ~= "" then
local iconDiv = mw.html.create('div')
iconDiv:addClass('box-icon')
boxHeader:node(iconDiv)
end
boxHeader:wikitext(titolo)
output:node(boxHeader)
local boxBody = mw.html.create('div')
boxBody:addClass('box-body')
boxBody:wikitext(frame:preprocess(testo))
output:node(boxBody)
return tostring(output)
end
return p