class Sanitize

def clean(html)

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