Re: [xsl] Open Office Multi-Line Normalization

Subject: Re: [xsl] Open Office Multi-Line Normalization
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 18 Apr 2007 23:03:44 +0100
looks like you just want

<pre>
<xsl:apply-templates/>
</pre>

the default element and text node templates will do the rest for you,
with the exception of
<xsl:template match="text:s">
 <xsl:value-of select="substring('                     ',1,@text:c)"/>
</xsl:template>

David

Current Thread