Registriert seit: 6. Apr 2005
10.109 Beiträge
|
Re: Winkel und Anführungszeichen in XML
29. Mai 2006, 14:51
Hallo Michael,
direkt aus der Abteilung Transferwissen:
XML-Code:
<xsl:template match="link">
<a>
<xsl:attribute name="HREF">
<xsl:apply-templates/>
</xsl:attribute>
<xsl:attribute name="target">_blank</xsl:attribute>
<xsl:value-of select="@caption"/>
</a>
</xsl:template>
Grüße vom marabu
|