> I've wrapped the raw invalid xml in some html tags, and it displays,
> however, all the xml tags have been parsed out - it just displays the
> values.
Web browsers assume that anything like <blah> is an HTML element they
don't recognise, and they ignore it when rendering. (Imagine the mess of
tags otherwise whenever a new element was introduced.)
You probably want to replace < and > with the character entities <
and >.
Eq.
Artie - 25 Feb 2008 12:27 GMT
On 25 Feb, 09:57, "Paul E Collins" <find_my_real_addr...@CL4.org>
wrote:
> > I've wrapped the raw invalid xml in some html tags, and it displays,
> > however, all the xml tags have been parsed out - it just displays the
[quoted text clipped - 8 lines]
>
> Eq.
Thanks Paul, that worked perfectly.
Artie