>Given following element:
>
><image name="abc" extension="txt">
> This text should be outputted!
></image>
>
>Is it possible to create a text file
>called "abc.txt" write the text and the close
>the file.
An empty stylesheet will output just the PCDATA text, but it will also
output an XML declaration, which you probably don't want, so add an
xsl:output element to specify that you want plain text output:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
</xsl:stylesheet>
Bob DuCharme www.snee.com/bob <bob@
snee.com> "The elements be kind to thee, and make thy
spirits all of comfort!" Anthony and Cleopatra, III ii
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|