First page Back Continue Last page Overview Graphics
Erstes XSLT
<xsl:stylesheet version=“1.0“ xmlns:xsl=“http://www.w3.org/1999/XSL/Transform“>
<xsl:output method=“text“/>
<xsl:template match=“greeting“>
Gesendet wird: <xsl:value-of select=“text“/> von <xsl:value-of select=“from“/>
</xsl:template>
</xsl:stylesheet>
Automatisch: <xsl:apply-templates select=“/“/>
Notes: