モジュール:IsValidPageName

提供: 配信者ウィキ
ナビゲーションに移動 検索に移動

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

スクリプトエラー: Lua エラー: プロセスを作成できません: proc_open(/home/users/1/upper.jp-about/web/strwiki/lua-error.log): Failed to open stream: No such file or directory

-- このモジュールは [[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