to_s()
Return a textual representation of the node.
# File actionpack/lib/action_controller/vendor/html-scanner/html/node.rb, line 79 def to_s s = "" @children.each { |child| s << child.to_s } s end