i have this function in xsl i took from this post
to replace "cr" with "line-break"
this is how i call it:
<xsl:variable name="breakText">
<xsl:call-template name="insertBreaks">
<xsl:with-param name="subject" select="PublicProfile/AboutMe"/>
</xsl:call-template>
</xsl:variable>
im doing like an article link to "read more" on text click the first div of the short start of the article (550 chars of the long article) display the text like i didnt use the "insertBreaks" function
<xsl:copy-of select="substring($breakText,0,550)"/>
but this line of the long description is working fine:
<xsl:copy-of select="$breakText"/>
where i was wrong?