class Sanitize

def fragment(html)

Returns a sanitized copy of the given _html_ fragment.
def fragment(html)
  return '' unless html
  frag = Nokogiri::HTML5.fragment(preprocess(html), **@config[:parser_options])
  node!(frag)
  to_html(frag)
end