Jump to content

Module:Team bracket tracking: Difference between revisions

From Wikipedia, the free encyclopedia
No edit summary
m Protected "Module:Team bracket tracking": High-risk module ([Edit=Require template editor access] (indefinite))
 
(No difference)

Latest revision as of 17:19, 10 October 2017

local p = {}

function p.tracking(frame)
	local args = frame:getParent().args
	for k, v in pairs(args) do
		if tostring(k):match('%-team[0-9]') then
			if tostring(v):match('[Bb][Rr][^<>]*>[%s]*.[Nn][Bb][Ss][Pp]') then
				return '[[Category:Pages using a team bracket with nbsp]]'
			end
			if tostring(v):match('[Bb][Rr][^<>]*>[%s]*<span[^<>]*>[%s]*.[Nn][Bb][Ss][Pp]') then
				return '[[Category:Pages using a team bracket with nbsp]]'
			end
		end
	end
	return ''
end

return p