xsl-list
[Top] [All Lists]

RE: [xsl] Re: XSL to ODF/OOXML

2007-10-25 14:55:24
this stylesheet:

<stylesheet version="1.0" 
xmlns="http://www.w3.org/1999/XSL/Transform";>
  <template match="@*|node()">
    <copy>
      <apply-templates select="@*|node()"/>
    </copy>
  </template>
</stylesheet>

Or more simply

<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform";>
  <template match="/"><copy-of select="."/></template>
</stylesheet>

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