模块:Interp:修订间差异

来自「荏苒之境」
无编辑摘要
Sicusa移动页面模块:Interp.lua模块:Interp,不留重定向
 
(没有差异)

2025年8月7日 (四) 23:35的最新版本

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

return function(s, tab)
	local result = s:gsub('($%b{})', function(w)
		return tab[w:sub(3, -2)] or w
	end)
	return result
end