"Special" characters not showing
Posted: Mon Dec 04, 2006 6:28 pm
Hi!
I'm opening an XSLT file in Oxygen, that I know contains some "special" characters (I guess unicode ones). Oxygen doesn't display them at all, whatever font I use for the editor. Worse, if I save the file, these special characters disappear.
Opening the file with notepad++ shows the following:
<xsl:variable name="string1">
<xsl:call-template name="replaceCharsInString">
<xsl:with-param name="stringIn" select="string($stringIn)" />
<xsl:with-param name="charsIn" select="'Ã'" /> <!--  -->
<xsl:with-param name="charsOut" select="''" />
</xsl:call-template>
</xsl:variable>
Opening (and saving) it with Oxygen shows:
<xsl:variable name="string1">
<xsl:call-template name="replaceCharsInString">
<xsl:with-param name="stringIn" select="string($stringIn)" />
<xsl:with-param name="charsIn" select="''" /> <!-- Â -->
<xsl:with-param name="charsOut" select="''" />
</xsl:call-template>
</xsl:variable>
Any idea how I can get Oxygen to recognise these characters?
Fabre
I'm opening an XSLT file in Oxygen, that I know contains some "special" characters (I guess unicode ones). Oxygen doesn't display them at all, whatever font I use for the editor. Worse, if I save the file, these special characters disappear.
Opening the file with notepad++ shows the following:
<xsl:variable name="string1">
<xsl:call-template name="replaceCharsInString">
<xsl:with-param name="stringIn" select="string($stringIn)" />
<xsl:with-param name="charsIn" select="'Ã'" /> <!--  -->
<xsl:with-param name="charsOut" select="''" />
</xsl:call-template>
</xsl:variable>
Opening (and saving) it with Oxygen shows:
<xsl:variable name="string1">
<xsl:call-template name="replaceCharsInString">
<xsl:with-param name="stringIn" select="string($stringIn)" />
<xsl:with-param name="charsIn" select="''" /> <!-- Â -->
<xsl:with-param name="charsOut" select="''" />
</xsl:call-template>
</xsl:variable>
Any idea how I can get Oxygen to recognise these characters?
Fabre