diff options
| author | Simon MacMullen <simon@lshift.net> | 2010-02-26 12:52:44 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@lshift.net> | 2010-02-26 12:52:44 +0000 |
| commit | 311661f24b7c940ee129291f8a5a4b23ec8ee87d (patch) | |
| tree | d2334df5565746843b13f4c3cc63484e5ca2b78f /docs | |
| parent | 3014307bec01fa5066afcb5e29467fe3b6fbe866 (diff) | |
| download | rabbitmq-server-git-311661f24b7c940ee129291f8a5a4b23ec8ee87d.tar.gz | |
Fix internal links in the generated page.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/html-to-website-xml.xsl | 6 |
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 --> |
