Re: [xsl] Display RTF as indented literal text on html page

Subject: Re: [xsl] Display RTF as indented literal text on html page
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 6 Dec 2001 15:35:18 GMT
you need an extension function to convert the rtf to a node set and then
apply templates to that node set that give the string value eg
<xsl:template match="*" mode="xx">
 <xsl:text>&lt;</xsl:text>
 <xsl:value-of select="name()".<
...

(You'll find several versions of these templates in the faqs or archives
of this list)

Alternatively you could use an extension that gave the string
representation of an xml node, eg in msxsl you can write an extension
function that takes in a node and gives back the string generated by the
node.xml

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread