<hyphenation>

<hyphenation> summarizes the way in which hyphenation in a source text has been treated in an encoded version of it. 2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements
Moduleheader — 2 The TEI Header
Attributes att.declarable (@default)
eol(end-of-line) indicates whether or not end-of-line hyphenation has been retained in a text.
Status Optional
Legal values are:
all
all end-of-line hyphenation has been retained, even though the lineation of the original may not have been.
some
end-of-line hyphenation has been retained in some cases. [Default]
hard
all soft end-of-line hyphenation has been removed: any remaining end-od-line hyphenation should be retained.
none
all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line.
Used by
May contain
core: p
linking: ab
Declaration

<rng:element name="hyphenation">
<rng:ref name="att.global.attributes"/>
<rng:ref name="att.declarable.attributes"/>
<rng:optional>
 <rng:attribute name="eola:defaultValue="some">
  <rng:choice>
   <rng:value>all</rng:value>
   <rng:value>some</rng:value>
   <rng:value>hard</rng:value>
   <rng:value>none</rng:value>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:oneOrMore>
 <rng:ref name="model.pLike"/>
</rng:oneOrMore>
</rng:element>
element hyphenation
{
   att.global.attributes,
   att.declarable.attributes,
   attribute eol { "all" | "some" | "hard" | "none" }?,
   model.pLike+
}
Example
<hyphenation eol="some">
 <p>End-of-line hyphenation silently removed where appropriate</p>
</hyphenation>