public Method

Node.to_s

Return a textual representation of the node.

Source Code

# File action_controller/vendor/html-scanner/html/node.rb, line 79
def to_s
  s = ""
  @children.each { |child| s << child.to_s }
  s
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.