1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Name: tagstream-conduit
Version: 0.3.2
Synopsis: streamlined html tag parser
Description:
Tag-stream is a library for parsing HTML//XML to a token stream.
It can parse unstructured and malformed HTML from the web.
It also provides an Enumeratee which can parse streamline html, which means it consumes constant memory.
You can start from the `tests/Tests.hs` module to see what it can do.
Homepage: http://github.com/yihuang/tagstream-conduit
License: BSD3
License-file: LICENSE
Author: yihuang
Maintainer: yi.codeplayer@gmail.com
Category: Web, Conduit
Build-type: Simple
Extra-source-files: tests/Tests.hs
, Highlight.hs
, Parse.hs
Cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/yihuang/tagstream-conduit
Library
GHC-Options: -Wall
Exposed-modules: Text.HTML.TagStream
, Text.HTML.TagStream.Parser
, Text.HTML.TagStream.Types
, Text.HTML.TagStream.Stream
, Text.HTML.TagStream.Utils
Build-depends: base >= 4 && < 5
, bytestring
, conduit >= 0.4 && < 0.5
, attoparsec
, blaze-builder
, blaze-builder-conduit >= 0.4 && < 0.5
test-suite test
hs-source-dirs: tests
main-is: Tests.hs
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5
, bytestring
, conduit >= 0.0.2
, QuickCheck
, HUnit
, hspec
, tagstream-conduit
ghc-options: -Wall
|