Class: Wunderbar::TextNode

Inherits:
Node
  • Object
show all
Defined in:
lib/wunderbar/node.rb

Direct Known Subclasses

IndentedTextNode

Constant Summary

Constants inherited from Node

Node::ESCAPE, Node::VOID

Instance Attribute Summary

Attributes inherited from Node

#attrs, #children, #name, #node, #parent, #text

Instance Method Summary collapse

Methods inherited from Node

#add_child, #method_missing, #walk

Constructor Details

#initialize(*args) ⇒ TextNode

Returns a new instance of TextNode.



193
194
195
# File 'lib/wunderbar/node.rb', line 193

def initialize(*args)
  super(nil, *args)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Wunderbar::Node

Instance Method Details

#serialize(options, result, indent) ⇒ Object



197
198
199
# File 'lib/wunderbar/node.rb', line 197

def serialize(options, result, indent)
  result << @text.to_s.gsub(/[&<>]/,ESCAPE)
end