diff options
Diffstat (limited to 'utility')
-rw-r--r-- | utility/formatter.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utility/formatter.xsl b/utility/formatter.xsl index 606a764..ec6db47 100644 --- a/utility/formatter.xsl +++ b/utility/formatter.xsl @@ -107,7 +107,7 @@ <xsl:when test="contains(@class, 'display')"> <p class="math"> <xsl:call-template name="math_highlighter"> - <xsl:with-param name="source" select="substring(text(),3,string-length(text())-4)"/> + <xsl:with-param name="source" select="text()"/> <xsl:with-param name="arguments"> <xsl:text>--display-mode</xsl:text> </xsl:with-param> @@ -117,7 +117,7 @@ <xsl:otherwise> <span class="math"> <xsl:call-template name="math_highlighter"> - <xsl:with-param name="source" select="substring(text(),3,string-length(text())-4)"/> + <xsl:with-param name="source" select="text()"/> </xsl:call-template> </span> </xsl:otherwise> |