モジュール:IsValidPageName
2018年9月11日 (火) 14:24時点における106.73.17.96 (トーク)による版 (ページの作成:「-- このモジュールは Template:IsValidPageName の実体です。 local export = {} function export.isValidPageName(frame) local success, res = pcall(mw.titl…」)
このモジュールについての説明文ページを モジュール: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