On Tue, 24 Jul 2001, Gary L Peskin wrote:
> Erwin Bolwidt wrote:
> > I don't really understand. The extension function is generating XML in
> > some format, which is not XHTML or HTML4 or anything close. So you cannot
> > directly embed the result of the extension function in the result tree.
>
> No, the extension function is generating DOM objects to go into a DOM
> node structure. It doesn't become XHTML or HTML4 or XML or WML or ...
> until it's serialized.
>From the org.w3c.dom.Document javadoc:
| The Document interface represents the entire HTML or XML document.
A DOM node structure _is_ XML, a text format is just another
representation of it. As long as all the relevant information from the XML
standard is kept in a representation, it's XML, right?
Erwin