Skip to content

Commit

Permalink
permitting note inside app
Browse files Browse the repository at this point in the history
  • Loading branch information
siglun committed May 16, 2018
1 parent 0382ecb commit d421747
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions exporters/common/apparatus-global.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,17 @@
<span style="background-color:Aquamarine;display:none;">
<xsl:call-template name="add_id"/>
<xsl:apply-templates mode="apparatus" select="t:lem"/>
<xsl:for-each select="t:rdg|t:rdgGrp|t:corr">
<xsl:apply-templates mode="apparatus" select="."/><xsl:if test="position() &lt; last()"><xsl:text>; </xsl:text></xsl:if>
<xsl:for-each select="t:rdg|t:rdgGrp|t:corr|t:note">
<xsl:apply-templates mode="apparatus" select="."/><xsl:if test="position() &lt; last()"><xsl:comment> ; </xsl:comment></xsl:if>
</xsl:for-each>
</span>

</xsl:template>

<xsl:template mode="apparatus" match="t:note">
<xsl:apply-templates/>
</xsl:template>

<xsl:template name="apparatus-marker">
<xsl:param name="marker" select="'missing marker'"/>
<xsl:variable name="idstring">
Expand Down

0 comments on commit d421747

Please sign in to comment.