Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- $Id: htm-teilistbiblandbibl.xsl 1851 2013-01-28 16:37:55Z simonastoyanova $ -->
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" 
5
                version="2.0">
6
  
7
  <xsl:template match="t:listBibl">
8
      <ul>
9
         <xsl:apply-templates/>
10
      </ul>
11
  </xsl:template>
12

    
13

    
14
  <xsl:template match="t:listBibl//t:bibl">
15
      <li>
16
         <xsl:apply-templates/>
17
      </li>
18
  </xsl:template>
19

    
20
</xsl:stylesheet>
(21-21/95)