Insert a CDATA section into the XML markup.
For example:
xml.cdata!("text to be included in cdata") #=> <![CDATA[text to be included in cdata]]>
Source Code
# File builder/xmlmarkup.rb, line 259 def cdata!(text) _ensure_no_block block_given? _special("<![CDATA[", "]]>", text, nil) end
<code/>and<pre/>for code samples.