Module:Cartouche
De Commission Historique
Révision datée du 29 septembre 2021 à 09:30 par L.strappazon (discussion | contributions)
La documentation pour ce module peut être créée à Module:Cartouche/doc
local p = {}
function p.cartouche(frame)
data = frame.args
local prenom,nom = frame.args['prenom'], frame.args['nom']
local c = '{| style=\"width: 30em; font-size: 90%; border: 1px solid #aaaaaa; background-color: #f9f9f9; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em; float: right; clear: right; text-align:left;\" ! style=\"text-align: center; background-color:#cccccc;\" colspan=\"2\" |<big>' .. prenom .. ' ' .. nom .. '</big>'
c = ''
for label, valeur in pairs(data) do
if #valeur > 1 then
c = c .. label .. ' = ' .. valeur .. '\n\n'
end
end
return c
end
return p