Module:IsValidPageName: Difference between revisions
From Chalo Chatu, Zambia online encyclopedia
Jump to navigationJump to search
Chalochatu (talk | contribs) Created page with "-- This module implements Template:isValidPageName. local export = {} function export.isValidPageName(frame) local success, res = pcall(mw.title.new, frame.args[1]) if..." |
m 1 revision imported |
(No difference)
| |
Latest revision as of 13:10, 22 September 2019
-- 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