imported>TheGhostOfInky (Created page with "local utils = {} function genCel(url,icon) local cellStr = "|-\n{{!}} align=\"left\" {{!}} " if icon == nil then cellStr = cellStr .."File:"..url.."-template.png " else cellStr = cellStr .. "File:"..icon.." " end cellStr = cellStr..url.." template\n" local ext = {".png",".psd",".pdn",".xcf"} for i=1,4 do local link = "{{!}} [https://archive.org/download/polcompball/{"..url..ext[i].." Link]\n" cellStr =...") |
imported>TheGhostOfInky No edit summary |
||
Line 12: | Line 12: | ||
local ext = {".png",".psd",".pdn",".xcf"} | local ext = {".png",".psd",".pdn",".xcf"} | ||
for i=1,4 do | for i=1,4 do | ||
local link = "{{!}} [https://archive.org/download/polcompball/ | local link = "{{!}} [https://archive.org/download/polcompball/"..url..ext[i].." Link] \n" | ||
cellStr = cellStr ..link | cellStr = cellStr ..link | ||
end | end |
Revision as of 21:57, 5 January 2023
Documentation for this module may be created at Module:TableUtils/doc
local utils = {}
function genCel(url,icon)
local cellStr = "|-\n{{!}} align=\"left\" {{!}} "
if icon == nil then
cellStr = cellStr .."[[File:"..url.."-template.png]] "
else
cellStr = cellStr .. "[[File:"..icon.."]] "
end
cellStr = cellStr..url.." template\n"
local ext = {".png",".psd",".pdn",".xcf"}
for i=1,4 do
local link = "{{!}} [https://archive.org/download/polcompball/"..url..ext[i].." Link] \n"
cellStr = cellStr ..link
end
return cellStr
end
function utils.createTable(frame)
local args = frame:getParent().args
--local args = frame
local i = 1
local renTable = ""
while args["url"..i] ~= nil do
renTable = renTable .. genCel(args["url"..i],args["icon"..i])
i = i +1
end
return renTable
end
return utils