Skip to content

Instantly share code, notes, and snippets.

@labra
Created December 3, 2014 19:43
Show Gist options
  • Save labra/a244f54828f3493b78e7 to your computer and use it in GitHub Desktop.
Save labra/a244f54828f3493b78e7 to your computer and use it in GitHub Desktop.
Ejemplo XSLT - pedido.xsl
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<link rel="stylesheet" href="pedido.css" />
<body>
<h1>Lista de productos</h1>
<ul><xsl:apply-templates /></ul>
</body>
</html>
</xsl:template>
<xsl:template match="producto">
<li>
<xsl:value-of select="nombre" />
</li>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment