|
|
|
|
|
by bjourne
4898 days ago
|
|
Here is some of my code to parse html: tstamp <- this ! "data-timestamp" >>> arr parseTime -< el
(path, score) <- css "td[class~=score-time] a" >>>
(this ! "href") &&& (getAllText >>> arr parseScore) -< el
So yes, you do have to learn about arrow syntax in order to use HXT efficiently. For most newbies it is not an easy concept to grasp, not helped by the fact that HXT isn't a very well documented library. |
|