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 18:42, 19 January 2019 (hm). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.main ()
	local content = mw.title.getCurrentTitle():getContent()
	local offset = string.find(content, "==", 1 , true)
	lead = string.sub(contnet, 1, offset)
	return lead
end

return p