hi, as scott suggested, wrapping up the markup xml contained within the xml-script block does the trick. For eg. The follow validates xhtml strict against the w3c validator found here : http://validator.w3.org
scott, is this something that will make it into atlas, that is wrapping up the markup within CDATA blocks :o
1
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
7 <meta name="keywords" content="Asp.net, AsyncUI.net" />
8
9 <title>www.asyncui.net test page</title>
10 </head>
11
12 <body>
13 <script type="text/xml-script">
14 // <![CDATA[
15 "http://schemas.microsoft.com/xml-script/2005">
16 <components />
17 </page>
18 // ]]>
19 </script>
20 </body>
21 </html>