diff options
author | André Malo <nd@apache.org> | 2014-07-18 23:43:09 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2014-07-18 23:43:09 +0200 |
commit | 171febdabd7c81a5a96436590d988fd69d7c22fc (patch) | |
tree | 30325e55cdb86f37fbf0ae02ff11fe2f6cae2167 /docs/manual/style/latex | |
parent | update transformation (diff) | |
download | apache2-171febdabd7c81a5a96436590d988fd69d7c22fc.tar.xz apache2-171febdabd7c81a5a96436590d988fd69d7c22fc.zip |
port latex-build fix from 2.4
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1611815 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/style/latex')
-rw-r--r-- | docs/manual/style/latex/latex.xsl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/manual/style/latex/latex.xsl b/docs/manual/style/latex/latex.xsl index 51a5882373..d9be4d7fa1 100644 --- a/docs/manual/style/latex/latex.xsl +++ b/docs/manual/style/latex/latex.xsl @@ -348,7 +348,10 @@ Server Documentation Project. More information is available at </xsl:choose> </xsl:variable> - + <xsl:call-template name="replace-string"> + <xsl:with-param name="replace" select="'—'" /> + <xsl:with-param name="with" select="'-'" /> + <xsl:with-param name="text"> <xsl:call-template name="replace-string"> <xsl:with-param name="replace" select="'_'"/> <xsl:with-param name="with" select="'\_'"/> @@ -396,6 +399,8 @@ Server Documentation Project. More information is available at </xsl:call-template> </xsl:with-param> </xsl:call-template> + </xsl:with-param> + </xsl:call-template> </xsl:template> |