I want to parse some XML that looks like this:
<node>
This is
<child>
blah
</child>
some
<child>
foo
</child>
text
</node>
How do I get access to the text node children in Simple XML?
Can I access them in the correct order of text and element children?
Do I need some other package for this?