Method: REXML::Entity#unnormalized

Defined in:
lib/rexml/entity.rb

#unnormalizedObject

Evaluates to the unnormalized value of this entity; that is, replacing all entities – both %ent; and &ent; entities. This differs from value() in that value only replaces %ent; entities.



75
76
77
78
79
80
# File 'lib/rexml/entity.rb', line 75

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