モジュール:User:CodeCat/isValidPageName

このモジュールについての説明文ページを モジュール:User:CodeCat/isValidPageName/doc に作成できます

-- This module is a temporary stopgap measure to fix [[Template:isValidPageName]].
-- It will be deleted/replaced eventually.

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