xsl-list
[Top] [All Lists]

Re: [xsl] Moving (promoting) XML elements through XSL

2006-06-30 06:33:04

Great idea, drkm.  Here it is:
on that input ,using the stylesheet I posted yesterday I get the
following which is what you wanted, isn't it?


$ saxon ind.xml ind.xsl
<?xml version="1.0" encoding="utf-8"?>
<topic>
   <prolog>
      <metadata>
         <keywords>
            <indexterm>Software Requirements</indexterm>
         </keywords>
      </metadata>
   </prolog>
      
   <title>
         Software Requirements
      </title>
      
   <body>
         
      <p>Some sample text</p>
      
   </body>

</topic>

--~------------------------------------------------------------------
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>
--~--