Is there a way of writing an XPath expression to select the content of the element.
e.g.
xxx
Assumin
Use the value-of element:
value-of
<xsl:value-of select="/Some/Path/To/Element"/>
If you can only specify an XPath then use the text function like this:
text
/Some/Path/To/Element/text()
A bit too late but...
data(Element)
...should also be fine.