Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1.0.0) is shown here.
cdata!(text)
public
Surrounds the given text with a CDATA tag
For example:
xml.cdata! "blah blah blah"
# File actionpack/lib/action_view/vendor/builder/xmlmarkup.rb, line 248
def cdata!(text)
_ensure_no_block block_given?
_special("<![CDATA[", "]]>", text, nil)
end