Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 393 Bytes

notesstmt.md

File metadata and controls

25 lines (23 loc) · 393 Bytes

notesstmt

Remove @type from <notesStmt/>, as it is not a valid attribute on this element.

Example

Before transformation:

<teiHeader>
  <!--  ... -->
  <notesStmt type="value">
    <note/>
  </notesStmt>
  <!-- ... -->
</teiHeader>

After transformation:

<teiHeader>
  <!--  ... -->
  <notesStmt>
    <note/>
  </notesStmt>
  <!-- ... -->
</teiHeader>