method

translate_xml_entities

translate_xml_entities(value)
private

No documentation available.

# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 175
            def translate_xml_entities(value)
              value.gsub(/&lt;/,   "<").
                    gsub(/&gt;/,   ">").
                    gsub(/&quot;/, '"').
                    gsub(/&apos;/, "'").
                    gsub(/&amp;/,  "&")
            end