macro.anyXML

macro.anyXML defines a content model within which any XML elements are permitted
モジュール tei — 1 The TEI Infrastructure
当該モジュールを使用するもの
宣言

<rng:define name="macro.anyXML">
 <rng:element>
  <rng:anyName/>
  <rng:zeroOrMore>
   <rng:attribute>
    <rng:anyName/>
   </rng:attribute>
  </rng:zeroOrMore>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:text/>
    <rng:ref name="macro.anyXML"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:element>
</rng:define>
macro.anyXML = element * { attribute * { text }*, ( text | macro.anyXML )* }