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

local p = {}
p[""] = function(frame)
	local f = frame:getParent()
	if (f == nil) then
		return frame.args[1]	
	else
		return frame.args[2]
	end
end

return p