pom.xslt 353 B

1234567891011
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <xsl:output indent="yes" cdata-section-elements="address bio"/>
  3. <xsl:strip-space elements="*"/>
  4. <xsl:template match="@*|node()">
  5. <xsl:copy>
  6. <xsl:apply-templates select="@*|node()"/>
  7. </xsl:copy>
  8. </xsl:template>
  9. </xsl:stylesheet>