View source for Module:Check aliases
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function p.exec(frame)
args = frame.args
local first = tonumber(args.first) or 1
local last = tonumber(args.last) or 999
local sep = args.sep or "%s*,%s*"
local it = mw.text.gsplit(args[1], sep)
local i = 1
while i < first do
i = i + 1
it()
end
for alias in it do
if i > last then break end
i = i + 1
if not mw.title.new(alias).exists then
return "[[Category:Articles missing alias pages]]"
000
1:0
Template used on this page:
Return to Module:Check aliases.