diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-19 23:33:59 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:36 -0500 |
commit | 30f5f649eb7c7c71439a62e999d1c183cb291e99 (patch) | |
tree | 11c8f3c2cf6dc9dccc89aab9fec767d8f284ba47 /docs/xslt | |
parent | 0760564a729088c8ca696082e01927aedcf3b5c9 (diff) | |
download | samba-30f5f649eb7c7c71439a62e999d1c183cb291e99.tar.gz samba-30f5f649eb7c7c71439a62e999d1c183cb291e99.tar.bz2 samba-30f5f649eb7c7c71439a62e999d1c183cb291e99.zip |
Fix link texts for PDF and PS output
(This used to be commit 3d8e8a8e35a94596c652729697b335ebcde23205)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/latex.xsl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/xslt/latex.xsl b/docs/xslt/latex.xsl index f969f86ae2..cb0ecd6874 100644 --- a/docs/xslt/latex.xsl +++ b/docs/xslt/latex.xsl @@ -4,6 +4,12 @@ <!--<xsl:import href="docbook.xsl"/>--> <xsl:import href="http://db2latex.sourceforge.net/xsl/docbook.xsl"/> +<xsl:template name="link"> + <xsl:element name="link"> + <xsl:copy-of select="@*"/> + </xsl:element> +</xsl:template> + <xsl:output method="text" encoding="ISO-8859-1" indent="yes"/> <xsl:param name="l10n.gentext.default.language" select="'en'"/> <xsl:param name="latex.example.caption.style"></xsl:param> |