Re: Using XSL parameter inside XSL attribute?
Hi,
me again. Just cut the Gordian knot...
The solution is actually quite simple by using the <xsl:value-of> inside
<xsl:attribute>:
<fo:external-graphic>
<xsl:attribute name="some_att">some_value</xsl:attribute>
<xsl:attribute name="src">url('images/logo_<xsl:value-of select="$foo"
/>.svg')</xsl:attribute>
</fo:external-graphic>
HTH.
Cheers from Aachen
Michael