packages feed

tag-stream-0.1.0: tag-stream.cabal

Name:                tag-stream
Version:             0.1.0
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 `tests/Tests.hs` to see what it can do.
Homepage:            http://github.com/yihuang/tag-stream
License:             BSD3
License-file:        LICENSE
Author:              yihuang
Maintainer:          yi.codeplayer@gmail.com
Category:            Web
Build-type:          Simple
Extra-source-files:    tests/Tests.hs
                     , Highlight.hs
                     , FilterUrl.hs
Cabal-version:       >=1.6

source-repository head
  type:     git
  location: git://github.com/yihuang/tag-stream.git

Library
  GHC-Options:       -Wall
  Exposed-modules:     Text.HTML.TagStream
                     , Text.HTML.TagStream.Parser
                     , Text.HTML.TagStream.Types
                     , Text.HTML.TagStream.Stream
  Build-depends:       base >= 4 && < 5
                     , bytestring
                     , attoparsec
                     , enumerator