XML Domain

The XML domain provides phrase-level elements for identifying mentions of XML components. It is convenient for documents that discuss XML markup (such as this one).

The XML domain provides the following element types:
<xmlelem>
Identifies a mention of an XML element type (tagname):
The markup:
<xmlelement>my-tagname</xmlelement>
Produces: <my-tagname>
<xmlatt>
Identifies a mention of an XML attribute:
The markup:
<xmlatt>my-attname</xmlatt>
Produces: @@my-attname
<textent>
Identifies a mention of an XML text entity:
The markup:
<textent>my-text-entity</textent>
Produces: &my-text-entity;
<parment>
Identifies a mention of an XML parameter entity:
The markup:
<parameterentity>my-parameter-entity</parameterentity>
Produces: %my-parameter-entity;
<numcharref>
Identifies a mention of an XML numeric character reference:
The markup:
<numcharref>2014</numcharref> (em-dash)
Produces: &#&#2014;; (em-dash)