Represents a TEXT node.
If enabled, #TEXT
pseudo-elements may appear as one
or multiple children of any normal XML element.
Value:
The text contained in the node.Note:
When an XML element (i.e. its data type) has a declared value, that value is produced from the content of all element's child TEXT and CDATA nodes merged together. This, however, does not affect the appearance of those TEXT and CDATA nodes as the element's children of#TEXT
and#CDATA
types.
Example:
The following piece of an XML:
will produce a single<par>text one<nl/>text two</par>
'par'
element with the three children:
#TEXT('text one'); nl; #TEXT('text two')