Class: REXML::Entity

Inherits:
Child show all
Defined in:
lib/active_support/core_ext/rexml.rb

Instance Method Summary collapse

Instance Method Details

#unnormalizedObject



17
18
19
20
21
22
23
# File 'lib/active_support/core_ext/rexml.rb', line 17

def unnormalized
  document.record_entity_expansion! if document
  v = value()
  return nil if v.nil?
  @unnormalized = Text::unnormalize(v, parent)
  @unnormalized
end