From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by imported>MusikAnimal at 17:19, 10 October 2017 . The present address (URL) is a permanent link to this version.Revision as of 17:19, 10 October 2017 by imported>MusikAnimal (diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation
Jump to search
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