打开/关闭搜索
搜索
打开/关闭菜单
39
24
27
1326
高中笔记
导航
首页
最近更改
随机页面
上传文件
分类
语文
数学
英语
物理
化学
生物学
地理
高中笔记
隐私政策
免责声明
资助高中笔记
著作权
打开/关闭外观设置菜单
通知
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
创建账号
登录
查看“︁模块:Documentation/wrapper”︁的源代码
来自高中笔记
查看
阅读
查看源代码
查看历史
associated-pages
模块
讨论
更多操作
←
模块:Documentation/wrapper
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于这些用户组的用户执行:
用户
、官方编辑小组
您必须确认您的电子邮件地址才能编辑页面。请通过
参数设置
设置并确认您的电子邮件地址。
您可以查看和复制此页面的源代码。
-- 包裹[[Module:Documentation]]不能直接被模板呼叫的函數 local mDocumentation = require('Module:Documentation') local getArgs = require('Module:Arguments').getArgs return { wrapper = function (frame) local args = frame.args local method = args.method if not method or not mDocumentation[method] or method:match('^_') -- reject private function then return require('Module:Error').error({'Can\'t find method "' .. method .. '" in [[Module:Documentation]].'}) elseif mDocumentation['_' .. method] -- reject private function then return require('Module:Error').error({'Please use <code>{{#invoke:[[Module:Documentation|Documentation]]|' .. method .. '|...}}</code> instead.'}) end local env = mDocumentation.getEnvironment(args) return mDocumentation[method](args, env) end }
返回
模块:Documentation/wrapper
。
查看“︁模块:Documentation/wrapper”︁的源代码
来自高中笔记