Module: REXML::EntityConst
| Relationships & Source Files | |
| Defined in: | lib/rexml/entity.rb |
Overview
This is a set of entity constants – the ones defined in the XML specification. These are gt, lt, amp, quot and apos. CAUTION: these entities does not have parent and document
Constant Summary
-
AMP =
# File 'lib/rexml/entity.rb', line 165
&
Entity.new( 'amp', '&' )
-
APOS =
# File 'lib/rexml/entity.rb', line 169
‘
Entity.new( 'apos', "'" )
-
GT =
# File 'lib/rexml/entity.rb', line 161
>
Entity.new( 'gt', '>' )
-
LT =
# File 'lib/rexml/entity.rb', line 163
<
Entity.new( 'lt', '<' )
-
QUOT =
# File 'lib/rexml/entity.rb', line 167
“
Entity.new( 'quot', '"' )