XSLT převod XHTML na prostý text: mailto odkazy nebudou obsahovat duplicitně adresu
1.1 --- a/java/Postak/src/cz/frantovo/postak/odchozíEmailText.xsl Mon Jul 01 15:40:55 2013 +0200
1.2 +++ b/java/Postak/src/cz/frantovo/postak/odchozíEmailText.xsl Tue Oct 15 23:16:04 2013 +0200
1.3 @@ -101,7 +101,7 @@
1.4
1.5
1.6 <xsl:template match="h:a">
1.7 - <xsl:if test="not(text() = @href)">
1.8 + <xsl:if test="not(text() = @href or concat('mailto:', text()) = @href)">
1.9 <xsl:text>'</xsl:text>
1.10 <xsl:apply-templates select="node()"/>
1.11 <xsl:text>' </xsl:text>