Module:Tmpl: Difference between revisions
Jump to navigation
Jump to search
en>GTaillefer m (1 revision imported) |
Backpagewiki (talk | contribs) m (1 revision imported) |
(No difference)
| |
Latest revision as of 18:04, 7 May 2024
Documentation for this module may be created at Module:Tmpl/doc
-- This is a helper module for Template:tmpl
local this = {}
function this.renderTmpl(frame)
local args = frame.args
local pargs = (frame:getParent() or {}).args
local result = pargs[0] or ''
for k, v in pairs(pargs) do
local n = tonumber(k) or -1
if (n >= 1 and n <= 9) then
result = mw.ustring.gsub( result, '$' .. n, mw.text.trim(v) )
end
end
return result
end
return this