This file is indexed.

/usr/share/doc/libghc-hxt-tagsoup-doc/html/hxt-tagsoup.txt is in libghc-hxt-tagsoup-doc 9.1.2-1.

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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | TagSoup parser for HXT
--   
--   The Tagsoup interface for the HXT lazy HTML parser.
@package hxt-tagsoup
@version 9.1.2


-- | Interface for TagSoup Parser
module Text.XML.HXT.TagSoup

-- | The system config option to enable the tagsoup parser
--   
--   Here is an example, how to use it:
--   
--   <pre>
--   ...
--   import Text.HXT.XML.Core
--   import Text.HXT.XML.TagSoup
--   ...
--   
--   readDocument [ withExpat ] "some-file.xml"
--   ...
--   </pre>
--   
--   reads the given document and parses it with the lazy tagsoup parser.
--   There is no validation enabled.
withTagSoup :: SysConfig

-- | Turns off tagsoup parsing. The build in HXT parser will be used.
withoutTagSoup :: SysConfig

-- | The Tagsoup parser arrow
parseHtmlTagSoup :: IOSArrow XmlTree XmlTree
a_tagsoup :: String
tagSoupOptions :: [OptDescr SysConfig]