« Module:Tmpl » : différence entre les versions

De La Voûte - Strainopedia
m Protected "Module:Tmpl": High-risk Lua module: Request at COM:ANB ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite))
 
m 1 revision imported
 
(Aucune différence)

Dernière version du 26 août 2025 à 15:53

La documentation pour ce module peut être créée à Module:Tmpl/doc

Erreur de script : Erreur Lua : impossible de créer le processus : proc_open(/home/strain/domains/voute.strainopedia.com/public_html/scribunto.log): Failed to open stream: No such file or directory

-- 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