Documentation for this module may be created at Module:Infobox/Widget/List/doc
local List = {} function List.make(arr) local container = mw.html.create('div') local sponsorList = mw.text.split(arr, ',') 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 List