Attribute Value Templates
<bild>
<href>blume.jpg</href>
<size width="300"/>
</bild>
-
Das zugehörige Stylesheet:
<xsl:variable
name="bild-dir">/images</xsl:variable>
...
<xsl:template match="bild">
<img src="{$bild-dir}/{href}"
width="{size/@width}"/>
</xsl:template>
<img src="/images/blume.jpg"
width="300"/>