Content deleted Content added
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 4:
function p.makeTableTop()
local headerRow = mw.html.create('tr')
:node(mw.html.create('th'):wikitext('Sitesite'))
:node(mw.html.create('th'):wikitext('IDid'))
:node(mw.html.create('th'):wikitext('Aliasalias'))
:node(mw.html.create('th'):wikitext('Notesnotes'))
:done()
 
Line 29:
 
local function getAlias(alias, title)
if not alias or alias == '' then
return title'N/A'
else
return alias
end
end
end
 
local function getNotes(notes)
if not notes or notes == '' then
return 'N/A'
else
return notes
end
end
end
 
if not args.site then