-
Notifications
You must be signed in to change notification settings - Fork 0
/
txt-teilgandl.xsl
41 lines (36 loc) · 1.31 KB
/
txt-teilgandl.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
30
31
32
33
34
35
36
37
38
39
40
41
<?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"
version="2.0">
<!-- template line-context can be found in teilgandl.xsl -->
<xsl:include href="teilgandl.xsl"/>
<xsl:template match="t:lg">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="t:l">
<xsl:param name="parm-line-inc" tunnel="yes" required="no"></xsl:param>
<xsl:param name="parm-verse-lines" tunnel="yes" required="no"></xsl:param>
<xsl:choose>
<xsl:when test="$parm-verse-lines = 'yes'">
<xsl:text>

</xsl:text>
<xsl:choose>
<xsl:when test="number(@n) and @n mod $parm-line-inc = 0 and not(@n = 0)">
<xsl:text> </xsl:text>
<xsl:value-of select="@n"/>
<xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
<!-- found in teilgandl.xsl -->
<xsl:call-template name="line-context"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>