Editing Module:Sandbox/User:Alsang
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
p = {} |
|||
function p.main() |
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 |
|||
⚫ | |||
end |
end |