diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2009-01-26 15:43:57 +0000 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2009-02-13 00:01:45 +0200 |
commit | 86845b44bb8df64505f84535535fce6b24390322 (patch) | |
tree | 49753f5e704c8237b77d6d3261416862d3506a29 /tools | |
parent | d104d67fdb1c9ea28a18145248a500a31ce124eb (diff) |
doc-generator: don't drop HTML attributes
This fixes generation of hyperlinks in HTML.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/doc-generator.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/doc-generator.xsl b/tools/doc-generator.xsl index 90acabc..fe9cd9f 100644 --- a/tools/doc-generator.xsl +++ b/tools/doc-generator.xsl @@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA <xsl:template match="html:* | @*" mode="html"> <xsl:copy> - <xsl:apply-templates mode="html"/> + <xsl:apply-templates mode="html" select="@*|node()"/> </xsl:copy> </xsl:template> |