You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
438 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:param name="label"/>
  4. <xsl:template match="/">
  5. <project>
  6. <xsl:apply-templates/>
  7. </project>
  8. </xsl:template>
  9. <xsl:template match="img">
  10. <resource source="{@src}" target="resources/{@src}"/>
  11. </xsl:template>
  12. <xsl:template match="node()">
  13. <xsl:apply-templates/>
  14. </xsl:template>
  15. </xsl:stylesheet>