« Module:Multiparamètres » : différence entre les versions

aucun résumé des modifications
Page créée avec « -- Original : https://fr.wikipedia.org/wiki/Module:Multiparam%C3%A8tres local p = {} function p.brut( frame ) return p._main( frame, function ( item ) return item end ) end function p.lien( frame ) return p._main( frame, function ( item ) return "" .. ( ( item:sub( 1, 1 ) == ":" ) and item or ":" .. item ) .. "" end ) end function p.categorie( frame ) return p._main( frame, function ( item ) return "[[:Catégorie:" .. item .. "|" .. item .. "]... »
 
Aucun résumé des modifications
 
Ligne 1 : Ligne 1 :
-- Original : https://fr.wikipedia.org/wiki/Module:Multiparam%C3%A8tres
-- Original : https://fr.wikipedia.org/wiki/Module:Multiparam%C3%A8tres
-- http://lua-users.org/wiki/StringTrim
local function trim( s )
    return s:match( '^()%s*$' ) and '' or s:match( '^%s*(.*%S)' )
end


local p = {}
local p = {}