Subject: RE: XML serialization...
From: DPawson@xxxxxxxxxxx
Date: Thu, 16 Sep 1999 11:54:54 +0100
|
>I mean by this, that all
>characters are transformed to its correspondant entities.
>For exmaple :
><example><element/></example>
>will represented as
><example><element/><example>
>
>Any idea ?
How about
<xsl:output method="text"/>
<xsl:template match = "whatever">
< <xsl:value-of select="name()"/>
<xsl:value-of select ="."/>
/>
etc
HTH DaveP
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|