XML element whose texts are to me merged
into the hash
# File activesupport/lib/active_support/xml_mini/jdom.rb, line 99
def merge_texts!(hash, element)
delete_empty(hash)
text_children = texts(element)
if text_children.join.empty?
hash
else
# must use value to prevent double-escaping
merge!(hash, CONTENT_KEY, text_children.join)
end
end