/usr/share/doc/libghc-html-conduit-doc/html/html-conduit.txt is in libghc-html-conduit-doc 1.1.0-2build6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | -- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Parse HTML documents using xml-conduit datatypes.
--
-- This package uses tagstream-conduit for its parser. It automatically
-- balances mismatched tags, so that there shouldn't be any parse
-- failures. It does not handle a full HTML document rendering, such as
-- adding missing html and head tags.
@package html-conduit
@version 1.1.0
module Text.HTML.DOM
-- | Converts a stream of bytes to a stream of properly balanced
-- <tt>Event</tt>s.
--
-- Note that there may be multiple (or not) root elements.
-- <tt>sinkDoc</tt> addresses that case.
eventConduit :: Monad m => Conduit ByteString m Event
sinkDoc :: MonadThrow m => Sink ByteString m Document
readFile :: FilePath -> IO Document
parseLBS :: ByteString -> Document
|