diff --git a/src/Text/Taggy.hs b/src/Text/Taggy.hs index 67bca99..da0bbce 100644 --- a/src/Text/Taggy.hs +++ b/src/Text/Taggy.hs @@ -12,16 +12,18 @@ module Text.Taggy , module Text.Taggy.Types , module Text.Taggy.Parser , module Text.Taggy.DOM + , module Text.Taggy.Combinators ) where import Data.Text (Text) import Text.Taggy.Types import Text.Taggy.Parser import Text.Taggy.DOM +import Text.Taggy.Combinators linksIn :: [Tag] -> [Text] linksIn = map attrValue . filter ((=="href") . attrKey) . concat . map attrs - . tagsNamed "a" \ No newline at end of file + . tagsNamed "a" diff --git a/taggy.cabal b/taggy.cabal index b79a60d..aac589c 100644 --- a/taggy.cabal +++ b/taggy.cabal @@ -15,6 +15,7 @@ cabal-version: >=1.10 library exposed-modules: Text.Taggy, + Text.Taggy.Combinators, Text.Taggy.DOM, Text.Taggy.Entities, Text.Taggy.Parser,