Bước tới nội dung

Mô đun:IsValidPageName

Bách khoa toàn thư mở Wikipedia
Tài liệu mô đun[tạo]
-- Mô đun này thực hiện [[Bản mẫu:isValidPageName]].

local export = {}

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

return export