モジュール:User:CodeCat/isValidPageName

出典: フリー多機能辞典『ウィクショナリー日本語版(Wiktionary)』
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール: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