This file is indexed.

/usr/share/doc/libghc-blogliterately-doc/html/Text-BlogLiterately-Run.html is in libghc-blogliterately-doc 0.8.4.3-2build5.

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
<!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.BlogLiterately.Run</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-BlogLiterately-Run.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Text-BlogLiterately-Run.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">BlogLiterately-0.8.4.3: A tool for posting Haskelly articles to blogs</p></div><div id="content"><div id="module-header"><table class="info"><tr><th valign="top">Copyright</th><td>(c) 2012-2013 Brent Yorgey</td></tr><tr><th>License</th><td>GPL (see LICENSE)</td></tr><tr><th>Maintainer</th><td>Brent Yorgey &lt;byorgey@gmail.com&gt;</td></tr><tr><th>Safe Haskell</th><td>None</td></tr><tr><th>Language</th><td>Haskell2010</td></tr></table><p class="caption">Text.BlogLiterately.Run</p></div><div id="description"><p class="caption">Description</p><div class="doc"><p>Functions for creating <code>BlogLiterately</code> executables.  By default,
 installing this library results in the installation of a standard
 executable, called <code>BlogLiterately</code>, which corresponds to
 <code><a href="Text-BlogLiterately-Run.html#v:blogLiterately">blogLiterately</a></code> from this module.  However, you can create your
 own custom executables with extra custom functionality using
 <code><a href="Text-BlogLiterately-Run.html#v:blogLiteratelyWith">blogLiteratelyWith</a></code> or <code><a href="Text-BlogLiterately-Run.html#v:blogLiteratelyCustom">blogLiteratelyCustom</a></code>.  For example:</p><pre>module Main where
import Text.BlogLiterately

myCustomXF1 = pureTransform ...
myCustomXF2 = Transform ...
main = blogLiteratelyWith [myCustomXF1, myCustomXF2]</pre><p>See <a href="Text-BlogLiterately-Transform.html">Text.BlogLiterately.Transform</a> for examples of transforms,
 additional transforms which are not enabled by default, and help in
 creating your own.</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:blogLiterately">blogLiterately</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> ()</li><li class="src short"><a href="#v:blogLiteratelyWith">blogLiteratelyWith</a> :: [<a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a>] -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> ()</li><li class="src short"><a href="#v:blogLiteratelyCustom">blogLiteratelyCustom</a> :: [<a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a>] -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> ()</li></ul></div><div id="interface"><h1>Documentation</h1><div class="top"><p class="src"><a id="v:blogLiterately" class="def">blogLiterately</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> () <a href="src/Text-BlogLiterately-Run.html#blogLiterately" class="link">Source</a> <a href="#v:blogLiterately" class="selflink">#</a></p><div class="doc"><p>The default BlogLiterately application.</p></div></div><div class="top"><p class="src"><a id="v:blogLiteratelyWith" class="def">blogLiteratelyWith</a> :: [<a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a>] -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> () <a href="src/Text-BlogLiterately-Run.html#blogLiteratelyWith" class="link">Source</a> <a href="#v:blogLiteratelyWith" class="selflink">#</a></p><div class="doc"><p>Like <code><a href="Text-BlogLiterately-Run.html#v:blogLiterately">blogLiterately</a></code>, but with the ability to specify additional
 <code><a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a></code>s which will be applied <em>after</em> the standard ones.</p></div></div><div class="top"><p class="src"><a id="v:blogLiteratelyCustom" class="def">blogLiteratelyCustom</a> :: [<a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a>] -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> () <a href="src/Text-BlogLiterately-Run.html#blogLiteratelyCustom" class="link">Source</a> <a href="#v:blogLiteratelyCustom" class="selflink">#</a></p><div class="doc"><p>Like <code><a href="Text-BlogLiterately-Run.html#v:blogLiterately">blogLiterately</a></code>, but with the ability to <em>replace</em> the
   standard <code><a href="Text-BlogLiterately-Transform.html#t:Transform">Transform</a></code>s.  Use this to implement custom interleaving
   orders of the standard transforms and your own, to exclude some
   or all of the standard transforms, etc.</p></div></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>