Project

General

Profile

1
<?xml version="1.0"?>
2
<xsl:stylesheet
3
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
        xmlns:gmd="http://www.isotc211.org/2005/gmd"
5
        version="1.0">
6

    
7
    <xsl:template match="gmd:URL">
8
        <xsl:variable name="url"><xsl:value-of select="./text()" /></xsl:variable>
9
        <xsl:element name="a">
10
            <xsl:attribute name="href">
11
                <xsl:value-of select="$url" />
12
            </xsl:attribute>
13
            <xsl:value-of select="$url" />
14
        </xsl:element>
15
    </xsl:template>
16
</xsl:stylesheet>
(4-4/8)