class Loofah::Scrubbers::Strip

def scrub(node)

def scrub(node)
  return CONTINUE if html5lib_sanitize(node) == CONTINUE
  node.before(node.children)
  node.remove
  STOP
end