> That's not sufficient. You must do this:
>
> <xsl:text disable-output-escaping="yes">&lt;tagname&gt;</xsl:text>

If you want to use it a lot, you can define that line as a variable:

<xsl:variable name="lt"><xsl:text
disable-output-escaping="yes">&lt;</xsl:text></xsl:variable>

and then insert it as <xsl:copy-of select="$lt"/>.

I did this before I found ways to avoid malformed xml... :)

--Jack


------------------------------------------------------------------
To unsubscribe from this elist send a message with the single word
"unsubscribe" in the body to: [EMAIL PROTECTED]

Reply via email to