I have an xml document with a node containing the escaped xml serialization of another object, as in this example:
<attribute>
<value>
<map>
<item>
<src>something</src>
<dest>something else</dest>
</item>
</map>
</value>
</attribute>
How can I apply an xslt template to the inner xml? In particolar, I would like to get an html table with the couples src/dest:
| src | dest |
| something | something else |