首页
随机
登录
设置
关于少前2百科
免责声明
少前2百科
搜索
查看“模块:Utils”的源代码
←
模块:Utils
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} function p.foreach(frame) local template = frame.args[1]:gsub('\\n', '\n') local ret = '' for i, arg in ipairs(frame.args) do if i > 1 and arg ~= '' then local text = template:gsub('%(%(%(1%)%)%)', arg) ret = ret .. text end end return ret end function p.d() local frame = { args = { 'hello (((1)))\n', 'x', 'y', 'z' } } local r = p.foreach(frame) mw.log(r) end return p
本页使用的模板:
模块:Utils/doc
(
查看源代码
)
返回
模块:Utils
。