module Rails::HTML::Concern::ComposedSanitize

def sanitize(html, options = {})

def sanitize(html, options = {})
  return unless html
  return html if html.empty?
  serialize(scrub(parse_fragment(html), options))
end