I haven't been following this thread, so I'm just making a guess as to what you're
stuck on:
To disable escaping try adding an attribute to your rule explicitly, thus:
<xsl:value-of disable-output-escaping = "yes" select=... />
Also, if you are adding stuff inside an XML tag that resembles an XML tag (e.g.: HTML
tags), and you don't want it processed, and you
can't be bothered encoding all the entities, then encapsulate the data with CDATA,
thus:
<ITEM><![CDATA[
<P>Some <BR>HTML</P>
]]></ITEM>
hth,
herman.
On 20 Aug 00, at 10:19, Schuetz, David wrote:
>
> Okay, bad test example. I shouldn't have been testing lt and amp in the
> context of flat text, I was being stupid there (oops :-) ). However, I
> still can't get the Charlie examples to output properly -- basically, all
> the "<BR>" and "<A HREF..." tags are messed up and show up as "<BR>,"
> etc.
>
> I'll keep playing around, especially with the output method directive, but
> just now I tried and the tags are still coming out wrong... :-(
>
> Thanks for your patience!
>
>
> david.
>