Préambule : XML selon le W3C
Définition : What is XML?
The Extensible Markup Language (XML) is a simple text-based format for representing structured information: documents, data, configuration, books, transactions, invoices, and much more. It was derived from an older standard format called SGML (ISO 8879), in order to be more suitable for Web use.
Définition : What is XML Used For?
XML is one of the most widely-used formats for sharing structured information today: between programs, between people, between computers and people, both locally and across networks.
Exemple : Extrait d'un lexique
1
<lexique>
2
...
3
<entree id="1976">
4
<mot>Essuie-glace</mot>
5
<description>L'essuie-glace retire automatiquement la pluie du <voirAussi ref="1965">pare-brise</voirAussi> lorsqu'elle tombe dessus. Il possède une <voirAussi ref="1977">lame caoutchoutée</voirAussi> qui peut être changée séparément en cas de besoin.</description>
6
</entree>
7
<entree id="1977">
8
<mot>Lame caoutchoutée</mot>
9
...
10
</entree>
11
...
12
</lexique>