macro.paraContent

macro.paraContent (문단 내용) 문단과 유사 요소 내용을 정의한다. [1.3 The TEI Class System]
모듈 tei — The TEI Infrastructure
에 의해 사용된
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <textNode/>
  <classRef key="model.paraPart"/>
 </alternate>
</content>
선언
<rng:define name="macro.paraContent">
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.paraPart"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:define>
macro.paraContent = ( text | model.paraPart )*