Module:Sandbox/Vriullop

Revision as of 10:55, 13 January 2014 by imported>Vriullop (ifexist)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

local z = {}

-- returns a number if page exists or an empty string if it doesn't
function z.ifexist( frame )
	local page = frame.args[1]
	return mw.message.newRawMessage("{{PAGEID}}"):title(page):text()
end

return z