Module:User:Mr. Stradivarius/sandbox
Appearance
![]() | This is the module sandbox page for Module:User:Mr. Stradivarius. |
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