Jump to content

Module:Transcluded

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Awesome Aasim (talk | contribs) at 04:03, 20 April 2024. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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