File: bernhard.xsl

package info (click to toggle)
libxml-xslt-perl 0.48-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,596 kB
  • sloc: xml: 10,773; perl: 3,134; makefile: 12
file content (15 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:template match="SCHADSTOFFBELASTUNG">
   <BLOCKQUOTE>

   <TT><B>Belastungsgebiet(e):</B></TT>
   <xsl:apply-templates/>

   </BLOCKQUOTE>
 </xsl:template>

 <xsl:template match="BELASTUNGSGEBIET">
        <TT><xsl:value-of select="."/></TT><BR/>
 </xsl:template>
</xsl:stylesheet>