Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Spring til indhold

Modul:isValidPageName

Fra Wiktionary

Dokumentation for dette modul kan oprettes på Modul:isValidPageName/dok

-- Copy from en.wiktionary Module:User:CodeCat/isValidPageName.
-- This module is created to fix [[Skabelon:isValidPageName]].

local export = {}

function export.isValidPageName(frame)
	local res = mw.title.new(frame.args[1])
	
	if res then
		return "valid"
	else
		return ""
	end
end

return export