มอดูล:IsValidPageName

จาก Roleplay Wiki
ไปยังการนำทาง ไปยังการค้นหา

เอกสารการใช้งานสำหรับมอดูลนี้อาจสร้างขึ้นที่ มอดูล:IsValidPageName/doc

-- This module implements [[แม่แบบ: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