I have used to the following variable:
<xsl:variable name="openTag">
<![CDATA[
<div>
]]>
</xsl:variable>
<xsl:variable name="closeTag">
<![CDATA[
</div>
]]>
</xsl:variable>
And implemented in the following way :
<xsl:choose>
<xsl:when test="$ownerid = '-1'">
<xsl:copy-of select="$LogText"/>
</xsl:when>
<xsl:when test="$ownerid < $nextownerid">
<xsl:copy-of select="$openTag"/>
<xsl:copy-of select="$LogText"/>
</xsl:when>
<xsl:when test="$ownerid > $nextownerid">
<xsl:copy-of select="$openTag"/>
<xsl:copy-of select="$LogText"/>
<xsl:copy-of select="$closeTag"/>
<xsl:copy-of select="$closeTag"/>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="$openTag"/>
<xsl:copy-of select="$LogText"/>
<xsl:copy-of select="$closeTag"/>
</xsl:otherwise>
</xsl:choose>
</div>
The problem is that div tags are outputted as text and not recognized as html tags. Is there any workaround? Thank you in advance!