tagstream-conduit 0.5.4 → 0.5.4.1
raw patch · 4 files changed
+6/−4 lines, 4 filesdep ~transformers
Dependency ranges changed: transformers
Files
- Text/HTML/TagStream/ByteString.hs +0/−1
- Text/HTML/TagStream/Text.hs +0/−1
- tagstream-conduit.cabal +2/−2
- tests/Tests.hs +4/−0
Text/HTML/TagStream/ByteString.hs view
@@ -110,7 +110,6 @@ TagTypeNormal -> do name <- takeTill (in3 ('<','>','/') ||. isSpace) (as, close) <- attrs- skipSpace return $ TagOpen name as close {--
Text/HTML/TagStream/Text.hs view
@@ -128,7 +128,6 @@ TagTypeNormal -> do name <- takeTill (in3 ('<','>','/') ||. isSpace) (as, close) <- attrs- skipSpace return $ TagOpen name as close {--
tagstream-conduit.cabal view
@@ -1,5 +1,5 @@ Name: tagstream-conduit-Version: 0.5.4+Version: 0.5.4.1 Synopsis: streamlined html tag parser Description: Tag-stream is a library for parsing HTML//XML to a token stream.@@ -36,7 +36,7 @@ , bytestring , text , case-insensitive- , transformers >= 0.3+ , transformers >= 0.2 , conduit >= 0.5 && < 1.1 , attoparsec , blaze-builder
tests/Tests.hs view
@@ -201,6 +201,10 @@ , [TagOpen "script" [] False, Text "// '\r\n", TagClose "script"] ) -- }}}+ -- issue 10 https://github.com/yihuang/tagstream-conduit/issues/10+ , ( "<foo> hello</foo>"+ , [TagOpen "foo" [] False, Text " hello", TagClose "foo"]+ ) ] testChar :: Gen Char