Documentation for this module may be created at Module:Sandbox/gonnym/transclude/doc
local p = {}
function p.current(frame)
return mw.getCurrentFrame():getTitle()
end
function p.parent(frame)
return mw.getCurrentFrame():getParent():getTitle()
end
function p.parent2(frame)
return mw.getCurrentFrame():getParent():getParent():getTitle()
end
return p