Jump to content

Module:Template name

From Wikipedia

Documentation for this module may be created at Module:Template name/doc

local p = {}

function p.print( frame )
	
	return frame:preprocess( frame:getParent():getTitle() )
	
end

function p:print2( frame )
	
	return frame:preprocess( mw.dumpObject( self ) .. frame:getParent():getTitle() )
	
end

function p.print3( frame )
	
	return frame:preprocess( mw.dumpObject( frame ) .. frame:getParent():getTitle() )
	
end

return p