summaryrefslogtreecommitdiff
path: root/docs/html-to-website-xml.xsl
diff options
context:
space:
mode:
authorSimon MacMullen <simon@lshift.net>2010-02-26 12:52:44 +0000
committerSimon MacMullen <simon@lshift.net>2010-02-26 12:52:44 +0000
commit311661f24b7c940ee129291f8a5a4b23ec8ee87d (patch)
treed2334df5565746843b13f4c3cc63484e5ca2b78f /docs/html-to-website-xml.xsl
parent3014307bec01fa5066afcb5e29467fe3b6fbe866 (diff)
downloadrabbitmq-server-git-311661f24b7c940ee129291f8a5a4b23ec8ee87d.tar.gz
Fix internal links in the generated page.
Diffstat (limited to 'docs/html-to-website-xml.xsl')
-rw-r--r--docs/html-to-website-xml.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html-to-website-xml.xsl b/docs/html-to-website-xml.xsl
index 3aaf3bf25d..b6117bc7ae 100644
--- a/docs/html-to-website-xml.xsl
+++ b/docs/html-to-website-xml.xsl
@@ -7,9 +7,9 @@
<xsl:template match="*"/>
-<!-- Copy every element through, deliberately losing all attributes -->
-<xsl:template match="node()">
- <xsl:copy><xsl:apply-templates select="node()"/></xsl:copy>
+<!-- Copy every element through -->
+<xsl:template match="@*|node()">
+ <xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template>
<!-- Copy the root node, and munge the outer part of the page -->