This file is indexed.

/usr/share/doc/libghc-haxml-doc/html/Text-XML-HaXml-Pretty.html is in libghc-haxml-doc 1:1.25.4-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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Text.XML.HaXml.Pretty</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script src="file:///usr/share/javascript/mathjax/MathJax.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_Text-XML-HaXml-Pretty.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Text-XML-HaXml-Pretty.html">Source</a></li><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">HaXml-1.25.4: Utilities for manipulating XML documents</p></div><div id="content"><div id="module-header"><table class="info"><tr><th>Safe Haskell</th><td>Safe</td></tr><tr><th>Language</th><td>Haskell98</td></tr></table><p class="caption">Text.XML.HaXml.Pretty</p></div><div id="table-of-contents"><p class="caption">Contents</p><ul><li><a href="#g:1">Pretty-print a whole document</a><ul><li><a href="#g:2">Just one content</a></li><li><a href="#g:3">Just one tagged element</a></li></ul></li><li><a href="#g:4">Pretty-print just a DTD</a><ul><li><a href="#g:5">The prolog</a></li><li><a href="#g:6">A content particle description</a></li></ul></li></ul></div><div id="description"><p class="caption">Description</p><div class="doc"><p>This is a pretty-printer for turning the internal representation
   of generic structured XML documents into the Doc type (which can
   later be rendered using Text.PrettyPrint.HughesPJ.render).
   Essentially there is one pp function for each type in
   Text.Xml.HaXml.Types, so you can pretty-print as much or as little
   of the document as you wish.</p></div></div><div id="synopsis"><p id="control.syn" class="caption expander" onclick="toggleSection('syn')">Synopsis</p><ul id="section.syn" class="hide" onclick="toggleSection('syn')"><li class="src short"><a href="#v:document">document</a> :: <a href="Text-XML-HaXml-Types.html#t:Document">Document</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li><li class="src short"><a href="#v:content">content</a> :: <a href="Text-XML-HaXml-Types.html#t:Content">Content</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li><li class="src short"><a href="#v:element">element</a> :: <a href="Text-XML-HaXml-Types.html#t:Element">Element</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li><li class="src short"><a href="#v:doctypedecl">doctypedecl</a> :: <a href="Text-XML-HaXml-Types.html#t:DocTypeDecl">DocTypeDecl</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li><li class="src short"><a href="#v:prolog">prolog</a> :: <a href="Text-XML-HaXml-Types.html#t:Prolog">Prolog</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li><li class="src short"><a href="#v:cp">cp</a> :: <a href="Text-XML-HaXml-Types.html#t:CP">CP</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a></li></ul></div><div id="interface"><h1 id="g:1">Pretty-print a whole document</h1><div class="top"><p class="src"><a id="v:document" class="def">document</a> :: <a href="Text-XML-HaXml-Types.html#t:Document">Document</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#document" class="link">Source</a> <a href="#v:document" class="selflink">#</a></p></div><h2 id="g:2">Just one content</h2><div class="top"><p class="src"><a id="v:content" class="def">content</a> :: <a href="Text-XML-HaXml-Types.html#t:Content">Content</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#content" class="link">Source</a> <a href="#v:content" class="selflink">#</a></p></div><h2 id="g:3">Just one tagged element</h2><div class="top"><p class="src"><a id="v:element" class="def">element</a> :: <a href="Text-XML-HaXml-Types.html#t:Element">Element</a> i -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#element" class="link">Source</a> <a href="#v:element" class="selflink">#</a></p></div><h1 id="g:4">Pretty-print just a DTD</h1><div class="top"><p class="src"><a id="v:doctypedecl" class="def">doctypedecl</a> :: <a href="Text-XML-HaXml-Types.html#t:DocTypeDecl">DocTypeDecl</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#doctypedecl" class="link">Source</a> <a href="#v:doctypedecl" class="selflink">#</a></p></div><h2 id="g:5">The prolog</h2><div class="top"><p class="src"><a id="v:prolog" class="def">prolog</a> :: <a href="Text-XML-HaXml-Types.html#t:Prolog">Prolog</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#prolog" class="link">Source</a> <a href="#v:prolog" class="selflink">#</a></p></div><h2 id="g:6">A content particle description</h2><div class="top"><p class="src"><a id="v:cp" class="def">cp</a> :: <a href="Text-XML-HaXml-Types.html#t:CP">CP</a> -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/pretty-1.1.3.3/Text-PrettyPrint.html#t:Doc">Doc</a> <a href="src/Text-XML-HaXml-Pretty.html#cp" class="link">Source</a> <a href="#v:cp" class="selflink">#</a></p></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.17.3</p></div></body></html>