Jump to content

Module:Multiple releases

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Codename Lisa (talk | contribs) at 18:21, 2 September 2016 (typo fix). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local infobox = require ('Module:Infobox').infobox

local p = {}

function p.main( frame )
    AssortedArgs = {}

    AssortedArgs["child"]="yes"
    AssortedArgs["label1"]="label1"
    AssortedArgs["data1"]="data1"

    return infobox(AssortedArgs)
end

return p