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 (Category:Pages using infobox lighthouse with NRHP embedded outside the module parameter). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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 k:match('A8EDEF') then
				return '[[Category:Pages using infobox lighthouse with NRHP embedded outside the module parameter]]'
			end
		end
	end
	return ''
end
return p