模組:IsValidPageName

Chók-cê̤ṳ Wikipedia

可在模組:IsValidPageName/doc建立此模組的說明文件

-- This module implements [[Template: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