From 3b8ad2b187e013591992b3fe0cf7ad93ed011223 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Tue, 8 Jan 2008 17:42:20 +0000 Subject: [PATCH] support for LaTeX formulas in Doxygen comments [SVN r42615] --- xsl/doxygen/doxygen2boostbook.xsl | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/xsl/doxygen/doxygen2boostbook.xsl b/xsl/doxygen/doxygen2boostbook.xsl index 9ee2e72..3210759 100644 --- a/xsl/doxygen/doxygen2boostbook.xsl +++ b/xsl/doxygen/doxygen2boostbook.xsl @@ -37,11 +37,14 @@ - + + + + @@ -1358,18 +1361,25 @@ Cannot handle memberdef element with kind= + <alt> <xsl:value-of select="*|text()"/> </alt> @@ -1377,7 +1387,7 @@ Cannot handle memberdef element with kind=<xsl:value-of select="@kind"/> <imageobject role="html"> <imagedata format="PNG" align="center"> <xsl:attribute name="fileref"> - <xsl:value-of select="concat(concat('images/form_', @id), '.png')"/> + <xsl:value-of select="concat(concat(concat($boost.doxygen.formuladir, 'form_'), @id), '.png')"/> </xsl:attribute> </imagedata> </imageobject> @@ -1398,7 +1408,7 @@ Cannot handle memberdef element with kind=<xsl:value-of select="@kind"/> <imageobject role="html"> <imagedata format="PNG"> <xsl:attribute name="fileref"> - <xsl:value-of select="concat(concat('images/form_', @id), '.png')"/> + <xsl:value-of select="concat(concat(concat($boost.doxygen.formuladir, 'form_'), @id), '.png')"/> </xsl:attribute> </imagedata> </imageobject> @@ -1412,6 +1422,4 @@ Cannot handle memberdef element with kind=<xsl:value-of select="@kind"/> </xsl:otherwise> </xsl:choose> </xsl:template> - --> </xsl:stylesheet> - \ No newline at end of file