Module:Test

From ProleWiki, the proletarian encyclopedia
Revision as of 17:53, 14 April 2024 by Forte (talk | contribs) (Testing capture of headers)
local p = {}
function p.test( frame )
	local pageContent = tostring(mw.title.getCurrentTitle():getContent())
	local pageLines = mw.text.split(pageContent,'\n',true)
	local render = ''
	for i=1,#pageLines do
		if mw.text.split(pageLines[i], '%s')[1] == '==' then
			render = render + pageLines[i]
		end
	end
	return render
end
return p