Module:IsValidPageName: Difference between revisions

From American Election Wiki
Jump to navigation Jump to search
pc>Sau226
m 1 revision imported: Mass importing office templates & modules
 
Peoplesconcord (talk | contribs)
m 1 revision imported
Tags: Mobile edit Mobile web edit
 
(No difference)

Latest revision as of 19:15, 29 September 2025

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

-- This module implements [[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