Question: When transforming XML with XSLT how can I get inner value of tag including inner tags?
Suppose you have this XML:
<Root>SomeValue
<Name>SomeName</Name>
<Desc>SomeDesc</Desc>
</Root>
And you want to get the following result:
SomeValue
<Name>SomeName</Name>
<Desc>SomeDesc</Desc>
The XSLT transformation could be like this: