Re: Using XSL parameter inside XSL attribute?

From
<>
Date
2020-02-12T17:17:39+00:00
ID
Thread
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