Hi
I am trying to find the Haskell HXT equivalent to this XPATH expression:
//focusTag/*[descendant::descTag]
Not sure how to do this.
deep can bring me to the focusTag, getChildren select the childs
deep (isElem >>> hasName focusTag) >>> getChildren
But then?
Thanks in advance