Sha256: 2e4a1e3dd8000b244c20629b816e8b62d16d0b0040bf2b60acadb6c9337987b6
Contents?: true
Size: 819 Bytes
Versions: 2
Compression:
Stored size: 819 Bytes
Contents
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict" > <xsl:strip-space elements="player name position team"/> <xsl:output method="xml" indent="no" encoding="iso-8859-1" /> <xsl:template match="player"> <html> <head> <title> <xsl:value-of select="name"/> </title> </head> <body> <xsl:apply-templates/> </body> </html> </xsl:template> <xsl:template match="player/name"> <h1> <xsl:apply-templates/> </h1> </xsl:template> <xsl:template match="player/position"> <h2> <xsl:apply-templates/> </h2> </xsl:template> <xsl:template match="player/team"> <h3> <xsl:apply-templates/> </h3> </xsl:template> </xsl:stylesheet>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xmlsec-shim-1.2.18.2 | vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document.xsl |
xmlsec-shim-1.2.18.1 | vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document.xsl |