Syntaxe générale XSL-XSLT
Syntaxe : Structure générale d'un programme XSl-XSLT
CTRL+C pour copier, CTRL+V pour coller
1
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
4
<xsl:template match="XPATH">
5
...
6
</xsl:template>
7
<xsl:template match="XPATH">
8
...
9
</xsl:template>
10
...
11
</xsl:stylesheet>
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" indent="yes" encoding="iso-8859-1"/> <xsl:template match="XPATH"> ... </xsl:template> <xsl:template match="XPATH"> ... </xsl:template> ... </xsl:stylesheet>