5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 12:21:43 +00:00

eliminar atributo style del editor

This commit is contained in:
f 2022-03-16 17:49:28 -03:00
parent d18293bea3
commit 3160b30dec

View file

@ -72,6 +72,17 @@ class MetadataContent < MetadataTemplate
resource['controls'] = true resource['controls'] = true
end end
# Elimina los estilos salvo los que asigne el editor
html.css('*').each do |element|
next if elements_with_style.include? element.name.downcase
element.remove_attribute('style')
end
html.to_s.html_safe html.to_s.html_safe
end end
def elements_with_style
@elements_with_style ||= %w[div mark].freeze
end
end end