Module:Infobox interval region: Difference between revisions
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
local infobox = require("Module:Infobox") | local infobox = require("Module:Infobox") | ||
local yesno = require("Module:Yesno") | local yesno = require("Module:Yesno") | ||
function p.concatenate_tables(t1, t2) | |||
for i=1, #t2 do | |||
t1[#t1 + 1] = t2[i] | |||
end | |||
end | |||
function p.infobox_IR(frame) | function p.infobox_IR(frame) | ||
Line 65: | Line 71: | ||
}) | }) | ||
end | end | ||
table.insert(data, { | |||
string.format("<div style=\"margin-top: 0.6em;\"><b>%s</b></div>", "section_header") | |||
}) | |||
local result = infobox.build( | local result = infobox.build( | ||
"Interval region", | "Interval region", |