Hello Stackoverflow!
I'm relatively new to XSLT. I've come across an issue that I don't know how to get around. I have an pretty large XML document that I am trying to transform to into another smaller, refined XML document.
The large XML document has this style:
<Property>
<name>Document name</name>
<value>SomeValue</value>
</Property>
...
<Property>
<name>Document Title</name>
<value>Me %amp; you</value>
</Property>
How do you transform the value in between the value elements and keep the "&"; intact. Apparently transforming this XML is causing errors due to that ampersand escape in the text.
Note: This large XML is generated by a application that pulls data from a server. So I'm kinda of stuck dealing with the escape ampersand :(