instance method
cdata_section
Ruby on Rails 3.2.22.5
Since v2.2.3Signature
cdata_section(content)
Returns a CDATA section with the given content. CDATA sections are used to escape blocks of text containing characters which would otherwise be recognized as markup. CDATA sections begin with the string <![CDATA[ and end with (and may not contain) the string ]]>.
Examples
cdata_section("<hello world>") # => <![CDATA[<hello world>]]> cdata_section(File.read("hello_world.txt")) # => <![CDATA[<hello from a text file]]>
Parameters
-
contentreq
Source
# File actionpack/lib/action_view/helpers/tag_helper.rb, line 113
def cdata_section(content)
"<![CDATA[#{content}]]>".html_safe
end
Defined in actionpack/lib/action_view/helpers/tag_helper.rb line 113
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::TagHelper