模块:Utils:修订间差异
无编辑摘要 |
无编辑摘要 |
||
第5行: | 第5行: | ||
template = template:gsub('\\n', '\n') | template = template:gsub('\\n', '\n') | ||
template = template:gsub('%(%(!%)%)', '|') | template = template:gsub('%(%(!%)%)', '|') | ||
template = template:gsub('%(%(=%)%)', '=') | |||
local ret = '' | local ret = '' | ||
for i, arg in ipairs(frame.args) do | for i, arg in ipairs(frame.args) do |
2024年2月3日 (六) 01:41的版本
可在模块:Utils/doc创建此模块的帮助文档
local p = {} function p.foreach(frame) local template = frame.args[1] template = template:gsub('\\n', '\n') template = template:gsub('%(%(!%)%)', '|') template = template:gsub('%(%(=%)%)', '=') 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