Modul:AFC submission catcheck

Pendokumenan untuk modul ini boleh diciptakan di Modul:AFC submission catcheck/doc

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,"%[%[Category:Rencana dihasilkan melalui Bestari Rencana%]%]",""))
    if mw.ustring.match(tc, "%[%[%s-[Cc]ategory:" ) == nil then
        return ""
    else
        return "[[Category:Kategori dengan penyerahan AfC]]"
    end
end

function p.submitted(frame)
	if mw.ustring.find(removeFalsePositives(mw.title.getCurrentTitle():getContent()), '{{AFC submission||', 1, true) then
		return frame.args[1]
	else
		return frame.args[2]
	end
end

return p