Module:Dièse couleur web
Révision datée du 24 février 2019 à 15:17 par Yves.bertin (discussion | contributions) (1 révision importée)
La documentation pour ce module peut être créée à Module:Dièse couleur web/Documentation
local z = {}
function z.couleur(value)
if value:find('#') == 1 then
return '#' .. value:sub(2)
elseif mw.ustring.match(value, '^%x%x%x%x%x%x$') or mw.ustring.match(value, '^%x%x%x$') then
return '#' .. value
else
return value
end
end
function z.main(frame)
local value = mw.text.trim(frame.args[1])
return z.couleur(value)
end
return z