Skip to content

Instantly share code, notes, and snippets.

@lemire
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lemire/66d0a7905443fdd220c1 to your computer and use it in GitHub Desktop.
Save lemire/66d0a7905443fdd220c1 to your computer and use it in GitHub Desktop.
Exemple de document XML contenant des erreurs
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<!DOCTYPE université [ <!ELEMENT université (faculté*,description*)*>
<!ELEMENT faculté (département*)> <!ELEMENT département EMPTY>
<!ATTLIST département nom CDATA #REQUIRED xmlnote (vide|plein) "plein">
<!ATTLIST université téléphone ID #REQUIRED> ]>
<université téléphone="514-4321" xml:lang="fr"> <description>La plus grande.</description>
<faculté nom="sciences"> <département nom="mathématiques"></département>
<département nom="sociologie" xmlnote="vide"/> </faculté> </université>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment