egonSchiele / HandsomeSoup

Easy HTML parsing for Haskell
http://egonschiele.github.com/HandsomeSoup
BSD 3-Clause "New" or "Revised" License
124 stars 20 forks source link

lib lost html(( #32

Closed 221V closed 5 years ago

221V commented 5 years ago

for example i want parse next page https://www.blockchain.com/en/btc/block/000000000000003887df1f29024b06fc2200b55f8af8f35453d7be294df2d214 and i want collect all "address - (Unspent)" addresses

but lib lost all - (<font color="green">Unspent</font>)

i try

runX $ doc >>> css "font[color=green]" >>> (deep getText)
runX $ doc >>> css "table.table-striped tr td" >>> getChildren

and nothing -- that html is lost in this lib((

221V commented 5 years ago

i am sorry, bug was in other place