Posted by David Carroll
I just learned something about XSLT. It is called an attribute value template. For example, instead of having to use the following construction to create a link:
<a><xsl:attribute name="href">
<xsl:value-of select="@url"/>
</xsl:attribute>My Link
</a>
you can simply say
<a href="{@url}">My Link</a>There is a lot of XSLT code I need to go clean up now...