Supprimer xmlns et <?xml-stylesheet
Bonjour,
Cela fait maintenant plusieurs heures que je m'arrache les cheveux à essayer de faire quelque chose qui ne me semble pourtant pas si compliqué!
J'ai ceci :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet alternate="yes" title="Titre" href="css/titre.css"
type="text/css"?>
<TEI xsi:schemaLocation="http://www.tei-c.org/ns/1.0 file:tei_blabla/tei_blabla.xsd"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xhtml="http://www.w3.org/TR/xhtml/strict"
xmlns:teix="http://www.tei-c.org/ns/Examples"
xmlns:ns="http://www.tei-c.org/ns/1.0"
xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty"
xmlns:aid5="http://ns.adobe.com/AdobeInDesign/5.0/"
xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/">
<teiHeader>
<fileDesc> |
et je veux ceci :
Code:
1 2 3 4
| <?xml version="1.0" encoding="UTF-8"?>
<TEI>
<teiHeader>
<fileDesc> |
Pour les <?xml-stylesheet je ne vois pas du tout comment faire, et pour les xmlns, j'ai beau utiliser exclude-result-prefixes, ça ne fonctionne pas.
Toute aide sera grandement appréciée!