View source for Module:Infobox
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
--
-- This module implements {{Infobox}}
--
local p = {}
local HtmlBuilder = require('Module:HtmlBuilder')
local args = {}
local origArgs
local root
function union(t1, t2)
-- Returns the union of the values of two tables, as a sequence.
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
000
1:0
Template used on this page:
Return to Module:Infobox.