Module:Infobox ZPI

Revision as of 14:26, 28 March 2024 by Contribution (talk | contribs) (Created page with "local p = {} function p.Infobox(frame) local args = frame:getParent().args local result = "'''''Infobox ZPI'''''\n" result = result .. "Nom: " .. (args.nom or "No...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Module documentation[view] [edit] [history] [purge]
This module should not be invoked directly; use its corresponding template instead: Template:Infobox ZPI.
Module:Infobox ZPI is a draft module. It is incomplete and may not be in active development. If possible, editors are encouraged to help with its development. In the meantime, editors should avoid using this module across the Xenharmonic Wiki, except for testing.

This module generates an infobox providing information about a given zeta peak index (ZPI).

Introspection summary for Module:Infobox ZPI 
Functions provided (1)
Line Function Params
3 Infobox (invokable) (frame)
Lua modules required (0)
Variable Module Functions used

No function descriptions were provided. The Lua code may have further information.


local p = {}

function p.Infobox(frame)
    local args = frame:getParent().args
    local result = "'''''Infobox ZPI'''''\n"
    result = result .. "Nom: " .. (args.nom or "Non spécifié") .. "\n"
    -- Ajoutez d'autres champs ici
    return result
end

return p