strange elements in DocContent of moki

Hey all,
I'm encountering some phantom elements in the moki document. Basically, when
the original source is dumped back into the moki, I get some content that
looks like:

<html xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  version="-//WAPFORUM//DTD XHTML Mobile 1.0//EN">
               <head profile="">
                  <title>Test</title>
               </head>
               <body style="background:url(  'Hand.gif' );"
xml:space="preserve"><p style="font-size: 30pt; position: absolute;
left:450px" xml:space="preserve">Test</p>

The code continues, but this snippet exemplifies some of the issues:
1) no namespace!
2) a mysterious empty 'property' attribute in the <head> tag
3) many other tags contain the 'xml:space="preserve" attribute.

For purposes of comparison, here's the text it should be outputting:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Test</title>
</head>
<body style="background:url(  'Hand.gif' );">
<p style="font-size: 30pt; position: absolute; left:450px">Test</p>

Does anyone know why this is going on, or if there's a quick fix?

Thanks,
Laura

Received on Monday, 13 August 2007 21:32:15 UTC