Jump to content

Module:Is infobox in lead

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Galobtter (talk | contribs) at 19:21, 19 January 2019 (Galobtter moved page Module:Sandbox/Galobtter/IsInLead to Module:IsInLead without leaving a redirect: wow). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.main (frame)
	local content = mw.title.getCurrentTitle():getContent()
	local offset = string.find(content, "==", 1 , true)
	if offset then
		lead = string.sub(content, 1, offset-1)
		if string.find(lead, frame.args[1], 1, true) then
			return "true"
		end
	end
end

return p