Class: Hpricot::CData

Inherits:
Text show all
Defined in:
lib/hpricot/tag.rb

Constant Summary

Constants included from Hpricot

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

Instance Attribute Summary

Attributes inherited from BaseEle

#parent, #raw_string

Instance Method Summary collapse

Methods inherited from Text

#initialize, parse_cdata_content, parse_cdata_section, parse_pcdata, #pathname, #pretty_print

Methods included from Text::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=, #inner_text, #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 Leaf

#pretty_print

Methods included from Hpricot

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

Methods inherited from BaseEle

alterable, #altered!, #html_quote, #if_output, #pathname

Constructor Details

This class inherits a constructor from Hpricot::Text

Instance Method Details

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



160
161
162
163
164
165
# File 'lib/hpricot/tag.rb', line 160

def output(out, opts = {})
  out <<
    if_output(opts) do
      "<![CDATA[#@content]]>"
    end
end