<tag>

<tag> (tag) 完全な開始タグ、終了タグのテキストを示す。属性規定はとることも可能だ が、タグ開始区切子、タグ終了区切子は含まない。 [22 Documentation Elements]
モジュール tagdocs — Documentation Elements
属性
type⚓︎ indicates the type of XML tag intended
Derived from att.typed
状態 任意
データ型 teidata.enumerated
正当な値:
start
a start-tag, with delimiters < and > is intended
end
an end-tag, with delimiters </ and > is intended
empty
an 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
scheme⚓︎ 当該タグ名が定義されているスキームの名前を示す。
状態 任意
データ型 teidata.enumerated
例としての値は以下の通り:
TEI
(text encoding initiative) 当該タグは、TEIスキームに属する。 [初期値]
DBK
(docbook) 当該タグは、DOcbookスキームに属する。
XX
(unknown) 当該タグは、不明スキームに属する。
Schematron
HTML
クラブのメンバー
上位
analysis: cl phr s span
figures: cell figDesc
iso-fs: fDescr fsDescr
linking: ab seg
spoken: u writing
tagdocs: eg valDesc
verse: metSym rhyme
下位 文字データのみ
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>
Content model
<content>
 <textNode/>
</content>
宣言
<rng:element name="tag">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.typed.attribute.subtype"/>
 <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="scheme"
   a:defaultValue="TEI">

   <rng:ref name="teidata.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:text/>
</rng:element>
element tag
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.typed.attribute.subtype,
   attribute type { "start" | "end" | "empty" | "pi" | "comment" | "ms" }?,
   attribute scheme { teidata.enumerated }?,
   text
}