Hi! It's me again!
If you want to extract your XSLT from the output above, use the following stylesheet:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:template match="xslt">
<xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:template>
</xsl:stylesheet>
Have a nice day,
Luc
Dijkstra's law on Programming and Inertia:
If you don't know what your program is supposed to do, don't try to write it.
|