method
translate_xml_entities
v1.2.6 -
Show latest stable
- Class:
ActiveSupport::CoreExtensions::Hash::Conversions::ClassMethods
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(/</, "<").
gsub(/>/, ">").
gsub(/"/, '"').
gsub(/'/, "'").
gsub(/&/, "&")
end