2,788
edits
(Created page with "local export = {} function export.make_infobox(data) local ret = '{| class="infobox"' if data.title then ret = ret .. '\n|-' ret = ret .. '\n! style="font-size:125%;font-weight:bold;text-align:center;" colspan=2 | ' .. data.title end if data.sections then for _, section in ipairs(data.sections) do if section.items then local num_items = #section.items for i, item in ipairs(section.items) do local row_class = "" if i == 1 then row_cla...") |
No edit summary |
||
Line 46: | Line 46: | ||
i = i + 2 | i = i + 2 | ||
end | end | ||
if #section > 0 then table.insert(data.sections, section) end | if #section > 0 then table.insert(data.sections, section) else error("BLABLABLA") end | ||
i = i + 1 | i = i + 1 | ||
end | end | ||
mw.logObject(data) | |||
return export.make_infobox(data) | return export.make_infobox(data) | ||
end | end | ||
return export | return export |