<tag>

<tag> contiene el texto completo de un marcador inicial o final, posiblemente incluyendo eventuales descripciones de atributos, pero nunca los caracteres de delimitación de inicio y fin del marcador. 22 Documentation Elements
Módulotagdocs — 22 Documentation Elements
Atributos
typeindicates the type of XML tag intended
Estado Opcional
Los valores admitidos son:
start
a start-tag, with delimiters < and > is intended
end
an end-tag, with delimiters </ and > is intended
empty
a empty tag, with delimiters < and /> is intended
pi
a pi (processing instruction), with delimiters <? and ?> is intended
comment
a comment, with delimiters <!-- and --> is intended
ms
a marked-section, with delimiters <[CDATA[ and ]]> is intended
schemeproporciona el nombre del esquema en que tal nombre es definido.
Estado Opcional
Los valores admitidos son:
TEI
(text encoding initiative) esta etiqueta es parte del esquema de TEI. [Por defecto]
DBK
(docbook) esta etiqueta es parte del esquema de Docbook.
XX
(desconocido) esta etiqueta es parte de un esquema desconocido.
Usado por
Puede contenerSólo datos de caracteres
Declaración

<rng:element name="tag">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="type">
  <rng:choice>
   <rng:value>start</rng:value>
   <rng:value>end</rng:value>
   <rng:value>empty</rng:value>
   <rng:value>pi</rng:value>
   <rng:value>comment</rng:value>
   <rng:value>ms</rng:value>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="schemea:defaultValue="TEI">
  <rng:choice>
   <rng:value>TEI</rng:value>
   <rng:value>DBK</rng:value>
   <rng:value>XX</rng:value>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:text/>
</rng:element>
element tag
{
   att.global.attributes,
   attribute type { "start" | "end" | "empty" | "pi" | "comment" | "ms" }?,
   attribute scheme { "TEI" | "DBK" | "XX" }?,
   text
}
Ejemplo
Mark the start of each italicised phrase with a
<tag>hi rend="it"</tag> tag, and its end with a <tag type="end">hi</tag> tag.
<tag type="comment">Example updated on 2008-04-05</tag>