-- Mô đun này thực hiện [[Bản mẫu:isValidPageName]].

local export = {}

function export.isValidPageName(frame)
	local res = mw.title.new(frame.args[1])
	
	if res then
		return "valid"
	else
		return ""
	end
end

return export