-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select should accept [Tag] #4
Comments
Another strong reason is that the returned |
Yes, I think I'd also like this change. Any reason to the contrary, @crufter? |
Just occured to me that we could also define selects :: Text -> [Tag] -> [Tag]
selects sel tags = concat $ map (select sel) tags |
@Wizek I will implement that |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'd propose to give a following example of using Haquery in ghci, which is one of the common usages of fetching a website and parsing it.
Which motivates me to say that
select
should accept a list of Tags, since that's whatparseHtml
returns.PS: I'm fairly new to Haskell ecosystem, so excuse my ignorance :)
The text was updated successfully, but these errors were encountered: