「モジュール:IsValidPageName」の版間の差分

提供: Bananawiki
ナビゲーションに移動 検索に移動
ページの登録:「-- このモジュールは 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」
 
(相違点なし)

2025年7月24日 (木) 11:23時点における最新版

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

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