/ sc01.xsl
sc01.xsl
1 <?xml version="1.0"?> 2 3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 4 <xsl:output method="html" encoding="UTF-8"/> 5 6 <xsl:template match="/"> 7 <html> 8 <body> 9 <h2>Instructions de la recette 10 <xsl:value-of select="recipeBox/recipes/recipe[@id='r101']/title"/> 11 </h2> 12 <table border="1"> 13 <tr bgcolor="#9acd32"> 14 <th>Instruction</th> 15 </tr> 16 <xsl:for-each select="recipeBox/recipes/recipe[@id='r101']/instructions/step"> 17 <tr> 18 <td> 19 <xsl:value-of select="."/> 20 </td> 21 </tr> 22 </xsl:for-each> 23 </table> 24 </body> 25 </html> 26 </xsl:template> 27 28 </xsl:stylesheet>