class REXML::CData

def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )

c.write( $stdout ) #->
c = CData.new( " Some text " )
_Examples_

Ignored
ie_hack::
Ignored
transitive::
The amount to indent this node by
indent::
Where to write the string. Defaults to $stdout
output::

Generates XML output of this object

See the rexml/formatters package
== DEPRECATED
def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
  Kernel.warn( "#{self.class.name}.write is deprecated", uplevel: 1)
  indent( output, indent )
  output << START
  output << @string
  output << STOP
end