跳至內容

模組:IsValidPageName

Wikipedia (chū-iû ê pek-kho-choân-su) beh kā lí kóng...
唐吉訶德的侍從thó-lūn | kòng-hiàn tī 2019 nî 9 goe̍h 15 ji̍t (lé-pài) 06:40 siu-tēng
(diff) ←Khah-kū ê siu-tēng-pún | khoàⁿ siōng sin ê siu-tēng-pún (diff) | Khah-sin ê siu-tēng-pún→ (diff)

可在模組: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