Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 465 Bytes

schemalocation.md

File metadata and controls

19 lines (17 loc) · 465 Bytes

schemaLocation

Remove @schemaLocation attribute from <TEI/>elements.

Example

Before transformation:

<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="some//location">
  <teiHeader>
  <!-- ... -->
</TEI>

After transformation:

<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <teiHeader>
  <!-- ... -->
</TEI>