Mòdul:Prova

De Viquidites

La documentació d'ús d'aquest mòdul es pot crear a Mòdul:Prova/ús

-- prova per intentar començar a funcionar amb plantilles Lua aquí

local p = {}

--comencem per quelcom fàcil

function p.hello(frame)
    local name = frame.args[1]
    return "Hello, " .. name .. "!"
end

function p.hello_little(frame)
    return "Hello, <small>" .. frame.args[1] .. "</small>!"
end

function p.hello_mida(frame, mida)
    mida = frame.args[2]
    return "Hello, <" .. mida .. ">" .. frame.args[1] .. "</" .. mida .. ">!"
end

return p