Is it possible with XLMSlurper to output all the text below a node without losing the tags?
<DIV1>
<p>text text text <b>strong</b></p>
<img ...></img>
</DIV1>
I want to practically extract the text inside the DIV1 tag without losing the HTML tags. The XML is not formatted with CDATA, so this solution is not possible for me.
Would be nice if someone have a solution for me...