Module:Liste éléments : Différence entre versions
(helper getParam() pour obtenir un paramètre s'il existe et est non vide, sinon retourne nil ou fallback optionnel ; noter la dépendance à variable locale "args") |
(comme ça on a quatre belles parties : bootstrap, glue, values, concat) |
||
Ligne 14 : | Ligne 14 : | ||
end | end | ||
− | local | + | local paramSep = getParam('séparateur', getParam('sép', '·')) |
− | + | local espaces = tonumber(getParam('espaces', '1')) | |
− | + | local glue | |
− | |||
− | espaces = tonumber(getParam('espaces', '1')) | ||
if paramSep == ',' then | if paramSep == ',' then | ||
Ligne 45 : | Ligne 43 : | ||
local secable = (args['sécable'] == 'oui') | local secable = (args['sécable'] == 'oui') | ||
+ | local values = {} | ||
for i,v in ipairs(args) do | for i,v in ipairs(args) do |
Version du 10 mai 2016 à 08:42
La documentation pour ce module peut être créée à Module:Liste éléments/doc
local z = {} function z.main(frame) local args = frame:getParent().args local trimFunc = mw.text.trim -- cache accès global function getParam(name, default) if args[name] ~= nil and args[name] ~= '' then return args[name] else return default -- nil si non spécifié end end local paramSep = getParam('séparateur', getParam('sép', '·')) local espaces = tonumber(getParam('espaces', '1')) local glue if paramSep == ',' then glue = ', ' elseif mw.text.unstripNoWiki(paramSep) == ' ' or paramSep == ' ' then -- {{espace}}, glue = paramSep elseif paramSep == '2·' or paramSep == '·2' then -- '\194\160' est une espace insécable (code UTF-8 sur deux octets) glue = '\194\160\194\160<span style="font-weight:bold">·</span>\194\160 ' elseif paramSep == '2•' or paramSep == '•2' then glue = '\194\160\194\160•\194\160 ' else if paramSep == '·' then paramSep = '<span style="font-weight:bold">·</span>' elseif paramSep == '-' or paramSep == '−' then paramSep = '–' -- tiret demi-cadratin elseif paramSep == '--' then paramSep = '—' -- tiret cadratin end if espaces == 0 then glue = paramSep else glue = string.rep('\194\160', espaces) .. paramSep .. string.rep('\194\160', espaces-1) .. ' ' end end local secable = (args['sécable'] == 'oui') local values = {} for i,v in ipairs(args) do local value = trimFunc(v) if value ~= '' then if not secable then value = '<span class="nowrap">'..value..'</span>' end values[#values+1] = value end end return table.concat(values, glue) end return z