Module:AFC submission catcheck
ښکارېدونکې بڼه
لاسوند لپاره ددې موډيول کېدای سی په Module:AFC submission catcheck/لاسوند کي وي
local p = {}
local function removeFalsePositives(str)
if not str then
return ''
end
return mw.ustring.gsub(mw.ustring.gsub(str, "<!--.--->", ""), "<nowiki>.-</nowiki>", "")
end
function p.checkforcats(frame)
local t = mw.title.getCurrentTitle()
tc = t:getContent()
if tc == nil then
return ""
end
tc = removeFalsePositives(mw.ustring.gsub(tc,"%[%[وېشنيزه:د جوړونکي لخوا جوړې شوې ليکنې%]%]",""))
if mw.ustring.match(tc, "%[%[%s-وېشنيزه:" ) == nil then
return ""
else
return "[[وېشنيزه:واگذاریهای مقالهها برای ایجاد همراه ردهها]]"
end
end
function p.submitted(frame)
if mw.ustring.find(removeFalsePositives(mw.title.getCurrentTitle():getContent()), '{{ليکنې جوړولو ته پرېښودل||', 1, true) then
return frame.args[1]
else
return frame.args[2]
end
end
return p