Class: Hpricot::Text

Inherits:
Object show all
Includes:
Leaf, Trav
Defined in:
lib/ext/hpricot/tag.rb,
lib/ext/hpricot/inspect.rb,
lib/ext/hpricot/modules.rb,
lib/ext/hpricot/modules.rb

Defined Under Namespace

Modules: Trav

Constant Summary

Constants included from Hpricot

AttrCore, AttrEvents, AttrFocus, AttrHAlign, AttrI18n, AttrVAlign, Attrs, ElementContent, ElementExclusions, ElementInclusions, FORM_TAGS, NamedCharacters, NamedCharactersPattern, OmittedAttrName, SELF_CLOSING_TAGS

Instance Method Summary collapse

Methods included from Trav

#traverse_text_internal

Methods included from Leaf::Trav

#traverse_all_element, #traverse_some_element, #traverse_text_internal

Methods included from Traverse

#after, #at, #before, #bogusetag?, #children_of_type, #clean_path, #comment?, #css_path, #doc?, #doctype?, #elem?, filter, #following, #get_subnode, #html, #index, #inner_html=, #make, #next, #node_position, #nodes_at, #position, #preceding, #previous, #procins?, #search, #swap, #text?, #to_html, #to_original_html, #traverse_element, #traverse_text, #xmldecl?, #xpath

Methods included from Node

#altered!, #clear_raw, #html_quote, #if_output, #inspect_tree

Methods included from Hpricot

XML, build, make, parse, uxs, xchr, xs

Constructor Details

#initialize(content) ⇒ Text

Returns a new instance of Text.



118
# File 'lib/ext/hpricot/tag.rb', line 118

def initialize content; self.content = content end

Instance Method Details

#<<(str) ⇒ Object



125
# File 'lib/ext/hpricot/tag.rb', line 125

def << str; self.content << str end

#output(out, opts = {}) ⇒ Object



126
127
128
129
130
131
# File 'lib/ext/hpricot/tag.rb', line 126

def output(out, opts = {})
  out <<
    if_output(opts) do
      content.to_s
    end
end

#pathnameObject



119
# File 'lib/ext/hpricot/tag.rb', line 119

def pathname; "text()" end

#pretty_print(q) ⇒ Object



84
85
86
# File 'lib/ext/hpricot/inspect.rb', line 84

def pretty_print(q)
  q.text content.dump
end

#to_sObject Also known as: inner_text, to_plain_text



120
121
122
# File 'lib/ext/hpricot/tag.rb', line 120

def to_s
  Hpricot.uxs(content)
end