Content deleted Content added
testing creating a frame with a specified title to use in parser function / magic words |
|||
Line 1:
-- This module is a sandbox. It is also used for testing XFDcloser
local p = {}
p.main = function(frame)
local childFrame = frame:newChild{ title = "Sandbox", args = {} }
local FULLPAGENAME = childFrame:preprocess( "{{FULLPAGENAME}}" )
return FULLPAGENAME
end
return p
|