Différences entre versions de « Module:Carrousel »

De Gregorius 3.0
Sauter à la navigation Sauter à la recherche
Ligne 1 : Ligne 1 :
 
local p = {}
 
local p = {}
 
function p.hello(frame)
 
function p.hello(frame)
    return '[['.. frame.args[1] ..'|< '.. frame.args[1] .. ']] [[' .. frame.args[2] ..'| '.. frame.args[2] ..' > ]]'  
+
 
+
return '{| class="wikitable" align="right"  | [['.. frame.args[1] ..'|< '.. frame.args[1] .. ']] || [[' .. frame.args[2] ..'| '.. frame.args[2] ..' > ]] |}'
 +
 
end
 
end
 
return p
 
return p

Version du 27 octobre 2021 à 13:13

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

local p = {}
function p.hello(frame)
	
	return '{| class="wikitable" align="right"  | [['.. frame.args[1] ..'|< '.. frame.args[1] .. ']] || [[' .. frame.args[2] ..'| '.. frame.args[2] ..' > ]] |}'
 
end
return p