macro.limitedContent

macro.limitedContent (paragraph content) defines the content of prose elements that are not used for transcription of extant materials. [1.3 The TEI Class System]
Moduletei — The TEI Infrastructure
Used by
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <textNode/>
  <classRef key="model.limitedPhrase"/>
  <classRef key="model.inter"/>
 </alternate>
</content>
Declaration
<rng:define name="macro.limitedContent">
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.limitedPhrase"/>
   <rng:ref name="model.inter"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:define>
macro.limitedContent = ( text | model.limitedPhrase | model.inter )*