Last active
March 1, 2016 17:35
-
-
Save spdustin/3e297cb620b627586124 to your computer and use it in GitHub Desktop.
cars.xsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="html" indent="yes" /> | |
<xsl:template match="/"> | |
<table> | |
<thead> | |
<tr> | |
<th>Year</th> | |
<th>Make</th> | |
<th>Model</th> | |
</tr> | |
</thead> | |
<tbody> | |
<xsl:apply-templates/> | |
</tbody> | |
</table> | |
</xsl:template> | |
<xsl:template match="/cars/car"> | |
<tr> | |
<td> | |
<xsl:value-of select="@year" /> | |
</td> | |
<td> | |
<xsl:value-of select="@make" /> | |
</td> | |
<td> | |
<xsl:value-of select="@model" /> | |
</td> | |
</tr> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment