Jump to content

Module:Transcluded

From Wikipedia, the free encyclopedia
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