Module:IsValidPageName: Difference between revisions

From Azupedia
Jump to navigation Jump to search
imported>Fire
ページの作成:「-- このModuleは Template:IsValidPageName の実体です。 local export = {} function export.isValidPageName(frame) local success, res = pcall(mw.titl…」
 
(No difference)

Latest revision as of 22:01, 23 January 2021

Documentation for this module may be created at Module:IsValidPageName/doc

-- このModuleは [[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