Content deleted Content added
+wrapper |
+ |
||
Line 335:
scale
)
local criteria = mw.html.create('ol')
for i = 1, 6 do
local b = raw_args['b'..i]
if b and b~='unused' then -- crtierion in use
b = cfg.B_checklist.mask[string.lower(b)] or cfg.B_checklist.mask.default
local image = '[[File:' .. cfg.B-checklist.icon[b] .. '.svg|16x16px|link=|alt=]]'
criteria:tag('li')
:wikitext(image .. ' ' .. cfg.B_checklist.criteria[i] .. ': <i>' .. cfg.B_checklist.checked[b] .. '</i>')
end
end
local checklist = mw.html.create('tr')
checklist
Line 360 ⟶ 371:
:tag('td')
:css('font-size', '90%')
:
▲ :done()
:done()
:tag('td')
|