5441
редагування
Admin (обговорення | внесок) Немає опису редагування |
Admin (обговорення | внесок) Немає опису редагування |
||
| Рядок 52: | Рядок 52: | ||
end | end | ||
local | local container = mw.html.create('div'):addClass('l-box') | ||
for i, section in ipairs(sections) do | for i, section in ipairs(sections) do | ||
local | local item = container:tag('a') | ||
:attr('href', '#' .. section.anchor) | |||
:addClass('l-box-item') | |||
:wikitext(section.display) | |||
if i == #sections then | if i == #sections then | ||
item:addClass('l-box-item-last') | |||
end | end | ||
end | end | ||
return tostring(container) | |||
return | |||
end | end | ||
return p | return p | ||