5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-27 09:36:22 +00:00

Merge branch 'limpieza-del-editor' into panel.sutty.nl

This commit is contained in:
f 2022-03-16 17:52:57 -03:00
commit c2db05b6b2

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