-
Notifications
You must be signed in to change notification settings - Fork 0
/
htm-teisupplied.xsl
29 lines (25 loc) · 1.07 KB
/
htm-teisupplied.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:t="http://www.tei-c.org/ns/1.0" exclude-result-prefixes="t"
version="2.0">
<!-- Called from teisupplied.xsl -->
<xsl:template name="supplied-parallel">
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
<xsl:choose>
<xsl:when test="$parm-leiden-style = 'dclp'">⎣<xsl:apply-templates/>⎦</xsl:when>
<xsl:otherwise><span class="underline"><xsl:apply-templates/></span></xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="supplied-previouseditor">
<span class="underline">
<xsl:apply-templates/>
</span>
</xsl:template>
<xsl:template name="supplied-subaudible">
<xsl:text>(</xsl:text><em><xsl:text>scil.</xsl:text></em><xsl:text> </xsl:text>
<xsl:apply-templates/>
<xsl:call-template name="cert-low"/>
<xsl:text>)</xsl:text>
</xsl:template>
</xsl:stylesheet>