class REXML::Text

def value

u.value #-> "sean russell"
u = Text.new( "sean russell", false, nil, true )
t.value #-> "< & sean russell"
t = Text.new( "< & &s; russell", false, nil, false )
t.value #-> "< & sean russell"
t = Text.new( "< & sean russell", false, nil, false, ['s'] )
# entity "r" is defined to be "russell"
# Assume that the entity "s" is defined to be "sean", and that the

entity_filter.
console. This ignores the 'raw' attribute setting, and any
entities, as it might be used programmatically, or printed to the
Returns the string value of this text. This is the text without
def value
  @unnormalized ||= Text::unnormalize(@string, doctype,
                                      entity_expansion_text_limit: document&.entity_expansion_text_limit)
end