Module:Test: Difference between revisions

From ProleWiki, the proletarian encyclopedia
m (Not sure why it won't work, testing something else)
mNo edit summary
Line 2: Line 2:
function p.test( frame )
function p.test( frame )
local pageContent = tostring(mw.title.getCurrentTitle():getContent())
local pageContent = tostring(mw.title.getCurrentTitle():getContent())
local pagesLines = ''
local pageLines = mw.text.split(pageContent,'%s')[1]
return mw.text.split(pageContent,'%s')[1]
return pageLines[1]
end
end
return p
return p

Revision as of 17:37, 14 April 2024

local p = {}
function p.test( frame )
	local pageContent = tostring(mw.title.getCurrentTitle():getContent())
	local pageLines = mw.text.split(pageContent,'%s')[1]
	return pageLines[1]
end
return p