No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
function Sponsors.make(sponsorArr) | function Sponsors.make(sponsorArr) | ||
local container = mw.html.create('div') | local container = mw.html.create('div') | ||
local sponsorList = mw.text.split(sponsorArr, ',') | local sponsorList = mw.text.split(sponsorArr, ',') | ||
Revision as of 14:04, 30 August 2022
Documentation for this module may be created at Module:Infobox/Widget/Sponsors/doc
local Sponsors = {}
function Sponsors.make(sponsorArr)
local container = mw.html.create('div')
local sponsorList = mw.text.split(sponsorArr, ',')
for i, v in ipairs(sponsorList) do
v = mw.text.trim(v)
local pageExists = mw.getCurrentFrame():callParserFunction('#ifexist', v, 'yes', 'no' )
local div = mw.html.create('div')
if ( pageExists == 'yes' ) then
div:wikitext('[[' .. v .. '|' .. v .. ']]')
else
div:wikitext(v)
end
container:node(div)
end
return container
end
return Sponsors