XSLT help : Interpretting HTML tags from XML
I am having an XML in which I want to store HTML tags and this TAG should be interpreted as HTML tag only by XSLT.
i.e.
EM is HTML tag for Italics
Say below XML
<?xml : ==-- whatever >
<Detail>
<NAME>Kunal</NAME>
<TITLE>
<EM>Kishan</EM>
</TITLE>
</DETail>
The XSLT for this
<span class=âpagetitle><xslt:value-of select=â//NAMEâ/> < xslt:value-of select=â//TITLEâ/></span>
Should be transformed to
<span class=âpagetitle>Kunal <EM>Kishan</EM></span> in the HTML Page Code
How to achieve this??
Thanks
Kunal Kishan
:)
Thanks,
Kunal Kishan
"Jogo Bonito"
|