5441
редагування
Admin (обговорення | внесок) Немає опису редагування |
Admin (обговорення | внесок) Немає опису редагування |
||
| Рядок 52: | Рядок 52: | ||
end | end | ||
local | local html_parts = {} | ||
table.insert(html_parts, '<div class="l-box">') | |||
for i, section in ipairs(sections) do | for i, section in ipairs(sections) do | ||
local | local last_class = "" | ||
if i == #sections then | if i == #sections then | ||
last_class = " l-box-item-last" | |||
end | end | ||
table.insert(html_parts, '<div class="l-box-item' .. last_class .. '">[[#' .. section.anchor .. '|' .. section.display .. ']]</div>') | |||
end | end | ||
return | table.insert(html_parts, '</div>') | ||
return table.concat(html_parts, '\n') | |||
end | end | ||
return p | return p | ||