[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] xsl:import, variables and html


Subject: Re: [xsl] xsl:import, variables and html
From: Joerg Pietschmann <joerg.pietschmann@xxxxxx>
Date: Tue, 09 Oct 2001 19:20:15 +0200

"Julio Kriger" <jkriger@xxxxxxxxxxxxxxx> wrote:
> Hi,
> I have this problem. I have an xsl which import another xsl, this last
> have the definitions of variables which have html code. When I try to
> use those variables in the original xsl, it output nothing.
[snip]
> <xsl:variable name="propaganda1_link">
>   <a href="...">
>   ...
> </xsl:variable>

Your variables contain markup, not simple strings, which meas they
actually represent RTFs and therefore ...

>  <xsl:value-of select="$propaganda1_link"/>

... you have to use xsl:copy-of instead of xsl:value-of
to copy their values correctly to the result tree.

  <xsl:copy-of select="$propaganda1_link"/>

Look up the definition of RTF and xsl:value-of in the XSLT
specification or any good XSLT book.

HTH
J.Pietschmann

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread
Keywords