Module:LatestAfD
Revision as of 17:39, 30 May 2017 by blackwiki>Swpb
local p = {}
function p.latestafd(frame)
local page = frame.args[1]
page_string = "Wikipedia:Articles for deletion/" .. page .. ""
page_title = mw.title.new(page_string)
if page_title.exists then
return "[[" .. page_string .. "]]"
end
end
return p