로그아웃한 편집자를 위한 문서 더 알아보기
-- 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 "유효" else return "" end end return export