View source for Module:Infobox
From All Skies Encyclopaedia
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 will implement {{Infobox}}
--
local p = {}
local HtmlBuilder = require('Module:HtmlBuilder')
local args
local root
function union(t1, t2)
-- return 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.