Haddock is a documentation generator for Haskell
0
votes
0answers
8 views
cabal: installing documentation under hsenv
I have a hsenv sandbox for a project, and I can't get cabal install to install the documentation for the libraries. The following:
cabal install --enable-documentation $package
installs the ...
10
votes
2answers
236 views
what is the meaning of “let x = x in x” and “data Float#” in GHC.Prim in Haskell
I looked at the module of GHC.Prim and found that it seems that all datas in GHC.Prim are defined as data Float# without something like =A|B, and all functions in GHC.Prim is defined as gtFloat# = let ...
7
votes
0answers
76 views
Haddock numbered list continuation
How to continue a numbered list with haddock documentation tool? The following lines in haddock
-- 1. First line.
--
-- 2. Second line with instructions to do something
--
-- >>> ...
1
vote
1answer
70 views
Haddock on record fields Haskell
I am trying write haddock for record fields on an interface. Only some of the fields are exported so I only want some of them documented. I read the documentation page here: ...
13
votes
1answer
378 views
What does a Haskell comment starting with `{- |` generally mean?
I see Haskell multi-line comments that sometimes start with {- | instead of just {-.
Does leading with the pipe character inside the comment mean something by convention?
1
vote
1answer
58 views
Embed bold face markup in Haddock documentation
Is there a way to get bold faced text when documenting Haskell source code with haddock markup? There is / / for emphasis, but nothing obvious for strong. I'm hoping for
an elegant hack but I'll ...
22
votes
2answers
729 views
Images in Haddock documentation
Does anyone have experience with embedding images within local Haddock documentation?
I see for example the lens package just uses external links to images, but I'd like to store the images locally. ...
1
vote
0answers
101 views
Why can't cabal haddock find lens?
I've got a project where I'm trying out the lens library. I'm trying to generate haddock docs so I can see the functions produced by the makeClassy TemplateHaskell function. cabal build works fine, ...
2
votes
1answer
93 views
Does {-# OPTIONS_HADDOCK hide #-} have any effect on non-exported modules?
Suppose I have a library packaged and built using Cabal, and some module Internal is not in my cabal file's Exposed-modules. Does it then make any difference if I specify a pragma
{-# ...
0
votes
1answer
146 views
Errors on building haddock documentation with cabal
I'm currently developing small application on Haskell. I have all documented and main too. But cabal haddock --executables show errors:
Running Haddock for XComposeChecker-0.1...
Preprocessing ...
3
votes
1answer
250 views
How to install haddock with cabal install
I tried to install haddock by running the following command cabal install haddock but I run through the following problem.
leonzo@lion:~/opt$ cabal install haddock
Resolving dependencies...
...
2
votes
1answer
212 views
Running Haddock on its own
I would like to start using Haddock; the primary reason is not that I do (or anyone else does) need nice HTML documentation for what I'm writing right now, but that it will teach me a standardized way ...
4
votes
1answer
83 views
Control documented type signature of re-exported function
Suppose there is a library module Foo which is not under my control:
module Foo (Foo, thing) where
data Foo = Foo Int
thing :: Foo
thing = Foo 3
Now suppose I have my own library module, which ...
0
votes
0answers
61 views
Lost global Contents of haddock
I just noticed that my global Contents of the haddock documentation of
modules ( file:///home/marcot/.cabal/share/doc/index.html ) lost most
of the modules. My workflow is fairly straightforward, but ...
2
votes
2answers
70 views
Haddock comments on imported entities
Is there a way to add Haddock documentation to an entity in the module which exports it, rather than the one that declares it?
I've got a hidden module that declares a dozen types or so, and then ...
1
vote
1answer
79 views
Haddock not obeying ignore-exports correctly
Take this example:
{-# OPTIONS_HADDOCK ignore-exports #-}
module HaddockTest (e1) where
-- * Exported
-- | This is exported.
e1 :: Int
e1 = 1
-- * Private
-- | This is not exported.
p1 :: Int
p1 ...
7
votes
2answers
155 views
Use of unicode characters in Haddock documentation
Haddock seems to incorrectly re-encode non-ASCII characters in the documentation in UTF-8 encoded source files. I often need to include mathematical formulas in the documentation and they are much ...
3
votes
1answer
144 views
Haddock hyperlinks and without warning about redundant imports
I have a dummy module in my project, whose sole purpose is to hold Haddock documentation for the rest of the library. In fact I don't need to import anything in this module, but if I don't import ...
9
votes
2answers
225 views
How are the Haddock module fields Portability, Stability and Maintainer used?
In lots of Haddock-generated module documentation (e.g. Prelude), a small box in the top-right can be seen, containing portability, stability and maintainer information:
From looking at the source ...
6
votes
1answer
170 views
How to write special characters like new line, and format output of haddock
I would like to format my haddock documentation as I do with javadoc, something like inserting html or any other markup that let me get a cleaner output without uncluding any javascript or CSS... ...
9
votes
1answer
662 views
how to use hoogle locally (like ctags)?
I want to use Hoogle locally, so I can run search queries on one of my projects. There's some documentation [ here ], but I can't figure out how to get it to work. It says to run Haddock, but haddock ...
2
votes
1answer
139 views
Where to find libClang documentation for haskell?
Where can I find documentation for the Haskell libClang bindings?
4
votes
2answers
144 views
Haddock: Document a declaration with inferred type signature?
Consider the following module
{-# LANGUAGE RecordWildCards #-}
module Example (foo, fuh, fon, fuzz) where
import qualified FirstClassModule (Bar(foo,fuh,fon,fuzz), makeBar)
FirstClassModule.Bar ...
18
votes
1answer
858 views
Haddock, Cabal: How to include source code examples?
I am the author of the operational package, which includes example code. I would like this example code to be hscolored and installed together with the API documentation, which is generated by ...
7
votes
1answer
450 views
Why is the Haddock documentation not showing up on Hackage?
I've got a package on Hackage that has haddock generated documentation but it isn't showing up on the Hackage page. I'm able to upload everything successfully but the documentation doesn't show up.
I ...
0
votes
1answer
221 views
Compiling Haddock with -XFlexibleInstances flag [closed]
I am trying to generate haddock the following command:
haddock *.hs
but get the following error:
Illegal instance declaration for `Monad (Either String)'
(All instance types must be of the form ...
6
votes
2answers
294 views
{} in .cabal for Haddock-documentation in Haskell
If I got the line
> { -# OPTIONS_GHC -fglasgow-exts -XTemplateHaskell #- }
in the documentation-part (description) of the .cabal-file I'll get the error message
haddock: parsing haddock ...
1
vote
1answer
133 views
Haddock losing part of the documentation?
I have the following function:
-- | Exponential moving average.
ema :: (Fractional a)
=> a -- ^ Alpha
-> [a] -- ^ Input data
-> [a] -- ^ Output
ema alpha xs = scanl1 (\a b ...
22
votes
2answers
3k views
Literate Haskell (.lhs) and Haddock
At the moment I'm only using Haddock but after seeing some really interesting examples (e.g. this gist ) of literate Haskell I'm interested in trying it out in a project.
The questions I got are:
...
14
votes
2answers
740 views
Enable --hyperlink-source for “cabal install”
The command cabal haddock has very useful --hyperlink-source option.
I would like to have the source hyperlinked when building documentation with cabal install.
The ticket #517 seems to be just about ...
2
votes
4answers
2k views
Haddock for Cabal-installed modules?
I'm using GHC and have installed several packages via Cabal. One of the packages' web site says "go see the haddock documentation". The haddock command seems to only work on source files, and cabal ...
1
vote
1answer
137 views
Haddock: Failed to create dependency graph (when adding sections with * or a module heading)
I compiled and installed haddock-2.4.2 from the tarball source.
Adding a few simple comments to the code here:
https://dl.getdropbox.com/u/143480/doc/DualMap.hs
and running haddock
$ haddock -h ...


