Ouline view elides <gap/> element
Posted: Sun Jan 24, 2010 3:07 am
Can anyone explain why the <gap/> element in the following example is shown in the Outline view when in Text mode but not in Author mode?
Code: Select all
<?oxygen RNGSchema="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="xml"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Title</title>
</titleStmt>
<publicationStmt>
<p>Publication information</p>
</publicationStmt>
<sourceDesc>
<p>Information about the source</p>
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
<body>
<p>Some<gap quantity="5" unit="mm"/> text here.</p>
</body>
</text>
</TEI>