tagstream-conduit-0.3.0: streamlined html tag parser

Safe HaskellSafe-Infered

Text.HTML.TagStream

Synopsis

Documentation

tokenStream :: Monad m => Conduit ByteString m TokenSource

html parser conduit.

data Token' s Source

Constructors

TagOpen s [Attr' s] Bool 
TagClose s 
Text s 
Comment s 
Special s s 
Incomplete s 

Instances

Eq s => Eq (Token' s) 
Show s => Show (Token' s) 

type Attr' s = (s, s)Source