Jump to content

Module:User:Mr. Stradivarius/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 05:18, 16 September 2016 (test noinclude). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.noincludeTest(frame)
	local ret = ''
	ret = ret .. '* Test 1: ' .. frame:preprocess('<noinclude>I am noincluded from the frame object</noinclude>')
	ret = ret .. '\n'
	ret = ret .. '* Test 2: ' .. frame:getParent():preprocess('<noinclude>I am noincluded from the parent frame object</noinclude>')
	return ret
end

return p