Skip to content

Instantly share code, notes, and snippets.

@labra
Created September 30, 2014 09:54
Show Gist options
  • Save labra/ff81ea40adb290290892 to your computer and use it in GitHub Desktop.
Save labra/ff81ea40adb290290892 to your computer and use it in GitHub Desktop.
XSLT example of pedido
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>Pedido</h1>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="producto">
<p><xsl:value-of select="nombre" /></p>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment