Let's say the html I'm currently parsing includes an anchor tag:
<a href="/here">this is what I want</a>
Following the example provided in the package documentation, I can extract the href string "/here" using:
links <- runX $ doc >>> Text.HandsomeSoup.css "a" ! "href"
But how can I retrieve the inner html content? The following code attempt seems to be what I'm searching for, but unfortunately does not yield any results:
links <- runX $ doc >>> Text.HandsomeSoup.css "a" ! "value"
I have thoroughly checked the HandsomeSoup documentation and I am starting to question if this task is feasible. Any assistance on this matter would be greatly appreciated.