I have a xml tag like this in my xml object,
<description>
<i>Hello</i><b>hai</b>
</description>
note:here <i>Hello</i><b>hai</b> is not the child tag or sibling tag of description.It is the content
of the description tag.
Now What I want is when I put <xsl:value-of select="description"/> or <xsl:copy-of select="description"/>
in my xsl file and transform it using XSLT, I want it in the formatted way.(i.e hai should be italic
and hello should be bold).
But it is coming as such, since it is the content of the description tag.
Can anybody help?
regards
Shanmugaraja