More languages
More actions
mNo edit summary |
mNo edit summary |
||
Line 12: | Line 12: | ||
return tostring(box) | return tostring(box) | ||
end | end | ||
return p |
Revision as of 17:46, 14 November 2021
local p = {}
function p.main(frame)
local box = mw.html.create()
:tag('table')
:attr('border-left', '10px solid #b50014')
local row = box:tag('tr')
local imageLeftCell = row:tag('td'):addClass('mbox-image')
imageLeftCell:tag('div'):css('width', '52px')
imageLeftCell:wikitext('[[File:Lenin citation-needed.svg|52px|link=|alt=]]')
local textCell = row:tag('td'):addClass('mbox-text')
:wikitext(frame.args.text)
return tostring(box)
end
return p