モジュール:IsValidPageName

提供:ウィキボヤージュ
モジュールの解説[作成]

-- このモジュールは [[テンプレート: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