Good day, i trying to use TagSoup library in my project and stuck at begining.
Tagsoup has StringLike class for some i guess honored purpose and i cant understand how to cope with it propertly. I wrote function:
parseFile :: (StringLike str) => String -> IO [Tag str]
parseFile f = do
html <- readFile f
return $ parseTags html
which gives me:
Couldn't match expected type
str' against inferred type[Char]'
str' is a rigid type variable bound by the type signature forparseFile' Expected type: IO [Tag str] Inferred type: IO [Tag String]
but TagSoup's 'parseTags' function has such signature and works well:
parseTags :: StringLike str => str -> [Tag str]
Mine works ok if i change its signature to:
parseFile :: String -> IO [Tag String]
But i like my functions also reatin this typeclassed signature, not strictly String, how to achieve this ?