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.

WWW:	http://github.com/yihuang/tagstream-conduit

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-24 10:18:43 +00:00
parent d6d6d4fa76
commit fb914fae14
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=299853
5 changed files with 33 additions and 0 deletions

View file

@ -267,6 +267,7 @@ system-fileio_port= devel/hs-system-fileio
system-filepath_port= devel/hs-system-filepath
tagged_port= devel/hs-tagged
tagsoup_port= textproc/hs-tagsoup # executable
tagstream-conduit_port= textproc/hs-tagstream-conduit
tar_port= archivers/hs-tar
temporary_port= devel/hs-temporary
Tensor_port= devel/hs-Tensor

View file

@ -268,6 +268,7 @@
SUBDIR += hs-regex-posix
SUBDIR += hs-stringsearch
SUBDIR += hs-tagsoup
SUBDIR += hs-tagstream-conduit
SUBDIR += hs-texmath
SUBDIR += hs-xhtml
SUBDIR += hs-xml

View file

@ -0,0 +1,23 @@
# New ports collection makefile for: hs-tagstream-conduit
# Date created: June 10, 2012
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= tagstream-conduit
PORTVERSION= 0.3.2
CATEGORIES= textproc haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= streamlined html tag parser
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= attoparsec blaze-builder blaze-builder-conduit>=0.4 \
conduit>=0.4
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (cabal/tagstream-conduit-0.3.2.tar.gz) = ae66739ab4b7999f0f8476c68c21e31d780c5d7d2803f7e1ac17a17fb2b3c8cc
SIZE (cabal/tagstream-conduit-0.3.2.tar.gz) = 6543

View file

@ -0,0 +1,6 @@
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.
WWW: http://github.com/yihuang/tagstream-conduit