L'espace de noms auquel appartient un élément ou un attribut est
:
' (noms qualifiés,
QNames) <svg:image xlink:href="xxx"/>
Exemple
<?xml version="1.0"?>
<html:html xmlns:html='http://www.w3.org/1999/xhtml'>
<html:head> <html:title>My Title</html:title> </html:head>
<html:body> <html:p>Refer to
<html:a html:href='http://example.com/def.html'>definition</html:a> </html:p> </html:body>
</html:html>
est équivalent à
<?xml version="1.0"?>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head> <title>My Title</title> </head>
<body> <p>Refer to
<a href='http://example.com/def.html'>definition</a> </p> </body>
</html>
Source : « Namespaces in XML »
7/23 |