Skip to content

Commit

Permalink
remove call to normalize-unicode when processing unclear; fixes #284
Browse files Browse the repository at this point in the history
  • Loading branch information
paregorios committed Aug 22, 2017
1 parent 54a6566 commit 4e7ee2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teiunclear.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<!-- templates (including tests for parent::unclear) are in teig.xsl -->
</xsl:when>
<xsl:otherwise>
<xsl:variable name="text" select="normalize-space(normalize-unicode($text-content))"/>
<xsl:variable name="text" select="normalize-space($text-content)"/>
<xsl:for-each select="1 to string-length()">
<xsl:value-of select="concat(substring($text,.,1),'&#x0323;')"/>
</xsl:for-each>
Expand Down

0 comments on commit 4e7ee2f

Please sign in to comment.