summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--convert-style-to-html.xsl13
1 files changed, 12 insertions, 1 deletions
diff --git a/convert-style-to-html.xsl b/convert-style-to-html.xsl
index b22de5c..ac8b48c 100644
--- a/convert-style-to-html.xsl
+++ b/convert-style-to-html.xsl
@@ -45,7 +45,18 @@
<xsl:with-param name="face" select="str:replace($face, 'normal', '')"/>
</xsl:call-template>
</xsl:when>
-
+ <xsl:when test="@font = 'Symbol' and @charset='2'">
+ <xsl:choose>
+ <xsl:when test="text() = 'a'">α</xsl:when>
+ <xsl:when test="text() = 'b'">β</xsl:when>
+ <xsl:when test="text() = 'h'">η</xsl:when>
+ <xsl:when test="text() = 'm'">μ</xsl:when>
+ <xsl:when test="text() = 'n'">ν</xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>