- From: W. Eliot Kimber <eliot@isogen.com>
- Date: Thu, 30 Jan 1997 13:09:55 -0900
- To: w3c-sgml-wg@www10.w3.org
At 10:36 AM 1/30/97 -0600, Len Bullard wrote: >Will the following example be koscher XML? > ><HTML> ><HEAD> ><TITLE>Hello World</TITLE> >. >. ><P>Your IP address is <SERVER>write(request.ip)</SERVER> ><SERVER>write("<p>Last time your were " + client.oldname + ".")</SERVER> No (because <p> tag is not closed). But this would be: <P>Your IP address is <SERVER>write(request.ip)</SERVER> <SERVER>write( <![CDATA["<p>Last time your were " + client.oldname + "."]])</SERVER> Cheers, E.
Received on Thursday, 30 January 1997 14:12:48 UTC