[xsl] Disapearing spaces between end tags and begin tags

Subject: [xsl] Disapearing spaces between end tags and begin tags
From: "Stan Smeets" <smeetsstan@xxxxxxxxx>
Date: Mon, 31 Jul 2006 17:16:50 +0200
I have an XSL file to transform XML to HTML.
In this file I have a structure like <para>some text <highlite>some
text</highlite> <bold>some text</bold>etc.
What happens is that I lose all of the spaces between te end tags and
the begin tags.
I have already explicitly put preserve spaces on all elements.
Does anybody know how to solve this problem
the tag in my xsl looks like this
<xsl:template match = "waarschuwingen">
<div>
<b>Waarschuwingen en voorzorgen:</b><xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:template>

Current Thread