Mòdul:Dièsi color web
Aparença
La documentacion d'utilizacion d'aquel modul se pòt crear a Mòdul:Dièsi color web/ús
local z = {}
function z.color(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.color(value)
end
return z