fimad / scalpel

A high level web scraping library for Haskell.
Apache License 2.0
323 stars 43 forks source link

<|> is defined in hidden module #89

Closed epoberezkin closed 4 years ago

epoberezkin commented 4 years ago

I may be wrong, but "Text.HTML.Scalpel.Internal.Scrape" (where Alternative instance is defined) is not exposed?

fimad commented 4 years ago

<|> is defined by the Control.Applicative module. If you want access to that operator you'll need to import that module. Check out this file for an example.

epoberezkin commented 4 years ago

thank you :)