class Sanitize

def clean(html)

Returns a sanitized copy of the given _html_ fragment.
def clean(html)
  if html
    dupe = html.dup
    clean!(dupe) || dupe
  end
end