此模块的文档可以在模块:MwApiTest/doc创建

local p = {}
function p.getPageName()
    return "当前页面:" .. mw.title.getCurrentTitle().text  -- 验证 mw 库访问权限
end

function p.parseWikitext()
    local wikitext = "'''加粗文字'''"
    return mw.getCurrentFrame():preprocess(wikitext)  -- 验证解析器功能
end
return p