Sha256: 61b1f362261e755de5db82ab343d943c615fa7673e28e797f78e092a3cb9b421
Contents?: true
Size: 583 Bytes
Versions: 86
Compression:
Stored size: 583 Bytes
Contents
<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output encoding="UTF-8" indent="yes" method="xml"/> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> <xsl:template match="fingerprints/fingerprint"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates select="description"/> <xsl:apply-templates select="example"/> <xsl:apply-templates select="param"/> </xsl:copy> </xsl:template> </xsl:stylesheet>
Version data entries
86 entries across 86 versions & 2 rubygems