Content deleted Content added
fix titles |
? |
||
Line 22:
table.insert(output, '* [[Template:' .. item .. ']]\n')
elseif (ns == "File") or (ns == "Image") then
mw.title.makeTitle(item, ''):getContent()
table.insert(output, '* [[:' .. item .. ']]\n')
elseif ns == "Category" then
mw.title.makeTitle(item, ''):getContent()
table.insert(output, '* [[:' .. item .. ']]\n')
else
mw.title.makeTitle(item, ''):getContent()
table.insert(output, '* [[' .. item .. ']]\n')
end
|