I am working on an XSLT where I transforming an XML into an nice looking html markup.
I have below input XML :
<entry in_force_from="20011201" colname="2" morerows="0">
<text in_force_from="20011201" newpara="N">A
<autodeftext glossary-id="G430"> firm</autodeftext> must conduct its business with integrity.
</text>
</entry>
And I want to transform this into :
<div>
A<a href="hell.aspx?id=G430"> firm</a> must conduct its business with integrity.
</div>
Most of the transformation is quite straight forward except the creation of this a link node.
textinto ` div`) Thanks!