class ReeText::TextOnlyScrubber

def initialize

def initialize
  @direction = :bottom_up
end

def scrub(node)

def scrub(node)
  if node.text?
    CONTINUE
  else
    node.before node.children
    node.remove
  end
end