Jump to content

Module:Lighthouse tracking

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Frietjes (talk | contribs) at 15:40, 18 November 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}
function p.tracking(frame)
	for k, v in pairs( frame:getParent().args ) do
		if k and k == 'module' then
		elseif type(k) == 'string' then
			if v and v:match('A8EDEF') then
				return '[[Category:Pages using infobox lighthouse with NRHP embedded outside the module parameter]]'
			end
		end
	end
	return ''
end
return p