Module:Sandbox/User:Alsang: Difference between revisions
no edit summary
(Blanked the page) Tag: Blanking |
No edit summary |
||
Line 1:
p = {}
function p.main()
local query = '[[Category:Hammermage Equipment]] OR [[Category:Guardian Equipment]] OR [[Category:Cryoknight Equipment]]|?#-=name|limit=500'
local results = mw.smw.ask(query)
local out = mw.html.create('table')
for _,page in ipairs(results) do
out:wikitext(page.name)
out:wikitext(mw.getCurrentFrame():preprocess('{{ItemSources|' .. page.name .. '}}'))
end
return out
end
return p
|