Creates a new text node as a child of the given parent, with the given content.
Source Code
# File action_controller/vendor/html-scanner/html/node.rb, line 212 def initialize(parent, line, pos, content) super(parent, line, pos) @content = content end
<code/>and<pre/>for code samples.