Préambule : XML selon le W3C

XML[1] est un standard du W3C[2] : Extensible Markup Language (XML) 1.0 (Fifth Edition)[3].

Les définitions suivantes sont directement copiées du site du W3C[4] (novembre 2009).

DéfinitionWhat 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éfinitionWhat 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.

ExempleExtrait 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>