Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- $Id: htm-teiaddanddel.xsl 2090 2013-10-24 15:23:22Z gabrielbodard $ -->
3
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
   xmlns:t="http://www.tei-c.org/ns/1.0" exclude-result-prefixes="t"  version="2.0">
5
   <!-- main templates for subst, add and del found in teiaddanddel.xsl-->
6
   <xsl:import href="teiaddanddel.xsl"/>
7

    
8
   <xsl:template match="t:subst">
9
      <xsl:apply-imports/>
10
   </xsl:template>
11

    
12

    
13
   <xsl:template match="t:add">
14
       <xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
15
       <xsl:choose>
16
           <xsl:when test="($parm-leiden-style = 'ddbdp' or $parm-leiden-style = 'sammelbuch') and @place='interlinear'">
17
            <span style="font-size:smaller;">
18
               <xsl:apply-imports/>
19
            </span>
20
         </xsl:when>
21
         <xsl:otherwise>
22
            <xsl:apply-imports/>
23
         </xsl:otherwise>
24
      </xsl:choose>
25
   </xsl:template>
26

    
27

    
28
   <xsl:template match="t:del">
29
      <xsl:apply-imports/>
30
   </xsl:template>
31

    
32
</xsl:stylesheet>
(8-8/95)