Skip to content

Commit

Permalink
replace @ with § in cg-lemmas
Browse files Browse the repository at this point in the history
  • Loading branch information
eg15 committed Feb 8, 2018
1 parent 25364ed commit af57cca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cg3-lemmas.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,31 @@
<xsl:if test="volition">
<xsl:choose>
<xsl:when test="$volition='Voluntary'">
<xsl:text>@vol </xsl:text>
<xsl:text>§vol </xsl:text>
</xsl:when>
<xsl:when test="$volition='Involuntary'">
<xsl:text>@inv </xsl:text>
<xsl:text>§inv </xsl:text>
</xsl:when>
<xsl:when test="$volition='VoluntaryInvoluntary'">
<xsl:text>@mix </xsl:text>
<xsl:text>§mix </xsl:text>
</xsl:when>
<xsl:when test="$volition='InvoluntaryVoluntary'">
<xsl:text>@mix </xsl:text>
<xsl:text>§mix </xsl:text>
</xsl:when>
<xsl:when test="normalize-space($volition) != ''">
<xsl:text>@err:</xsl:text>
<xsl:text>§err:</xsl:text>
<xsl:value-of select="$volition"/>
</xsl:when>
</xsl:choose>
</xsl:if>
<xsl:if test="syntax">
<xsl:if test="normalize-space($arguments) != ''">
<xsl:for-each select="tokenize($arguments, '-')">
<xsl:text>@</xsl:text>
<xsl:text>§</xsl:text>
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:for-each>
<xsl:text>@</xsl:text>
<xsl:text>§</xsl:text>
<xsl:value-of select="$arguments"/>
<xsl:text> </xsl:text>
</xsl:if>
Expand Down

0 comments on commit af57cca

Please sign in to comment.