Sb forum speech.png DiscordLink.png FacebookLink.png RedditLink.png SteamLink.png TwitterLink.png YoutubeLink.png

Difference between revisions of "Module:SB Infobox Begin"

From Starbase wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local p = {}
local p = {}
function switch_key_val(tbl)
    local rtbl = {}
    for k,v in pairs(tbl) do
        rtbl[v] = k
    end
    return rtbl
end


function p.main(frame)
function p.main(frame)
local args = getArgs(frame)
local args = getArgs(frame)
return p._main(args)
return p._main(args)
end
function p.section(frame)
local args = getArgs(frame)
local remap = switch_key_val(args)
return p._section(remap)
end
function p._section(args)
local output = ""
for k,v in pairs(args) do
local newRow = mw.html.create('div')
:addClass('SB-Infobox-Data-Cell')
newRow:tag('div')
:addClass('SB-Infobox-Cell-Header')
:wikitext(tostring(v))
newRow:tag('div')
:addClass('SB-Infobox-Cell-Body')
:wikitext(tostring(k))
output = output .. tostring(newRow)
end
return tostring(output)
end
end


Line 40: Line 10:
local output = ""
local output = ""
local n = 0
local n = 0
for _ in ipairs(args) do n=_
for _ in ipairs(args) do  
end
n=_
local t = {}
end
for i=1,n do
local t = {}
t[i] = tostring(args[i])
for i=1,n do
end
t[i] = tostring(args[i])
end
return table.concat(t,"")
return table.concat(t,"")
-- for k,v in pairs(args) do
-- output = output .. tostring(v)
-- end
-- return tostring(output)
end
end


return p
return p

Revision as of 03:44, 26 May 2021

Documentation for this module may be created at Module:SB Infobox Begin/doc

local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local output = ""
	local n = 0
	for _ in ipairs(args) do 
		n=_
	end
	local t = {}
	for i=1,n do
		t[i] = tostring(args[i])
	end
	return table.concat(t,"")
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.