Jump to content

Module:IsSubpage

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by MSGJ (talk | contribs) at 09:24, 8 May 2024 (create). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
require('strict')
local p = {}
p.main = function(frame)
	local page = frame.args.page
	local title = mw.title.new(page)
	return title.isSubpage
end
return p