xsl-list
[Top] [All Lists]

RE: Xsl question (embedding an xml in another xml)

2004-11-30 01:55:27

In one xslt file, is it possible to do the following transfomation


TransfomedOutput (Person.xml)
----------------
<?xml version=3D3D"1.0"?>
<Person>
<PersonDetails>
        <?xml version=3D3D"1.0"?>
         <Details>
         <name>aaa</name>
         <age>36</age>
         </Details>
<PersonDetails>
</Person>


It's possible to use XSLT serialization tricks to generate ill-formed XML,
but is this really what you want to do? No XML parser will accept a document
with an XML declaration in the middle of it, so why do you want to produce
one?

Michael Kay
http://www.saxonica.com/



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--