diff options
Diffstat (limited to 'docs/xml-docs/style/stylesheets/any2project.xsl')
-rw-r--r-- | docs/xml-docs/style/stylesheets/any2project.xsl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/xml-docs/style/stylesheets/any2project.xsl b/docs/xml-docs/style/stylesheets/any2project.xsl new file mode 100644 index 000000000..d1253f11e --- /dev/null +++ b/docs/xml-docs/style/stylesheets/any2project.xsl @@ -0,0 +1,21 @@ +<?xml version="1.0"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"> + + <xsl:param name="label"/> + + <xsl:template match="/"> + <project> + <xsl:apply-templates/> + </project> + </xsl:template> + + <xsl:template match="img"> + <resource source="{@src}" target="images/{@src}"/> + </xsl:template> + + <xsl:template match="node()"> + <xsl:apply-templates/> + </xsl:template> + +</xsl:stylesheet>
\ No newline at end of file |