On Tuesday 04 February 2003 23:58, you wrote: <<snip>> > > The closest i come is this: > > > > <xsl:with-param name="replace-string"> > > <xsl:value-of select="'<br>'"/> > > </xsl:with-param> > > > > which of course just sticks a bunch of literal <br> in the <<snip>> > What about something like this (untested): > > <xsl:variable name="replace-string"> > <xsl:text disable-output-escaping="yes"><br></xsl:text> > </xsl-variable> > ... > <xsl:with-param name="replace-string" select="$replace-string"/> > > Regards > Gisbert Amm
Thanks! That worked. -------------------------------------- Ethan Vaughn [EMAIL PROTECTED] --------------------------------------
