Tagged Questions
14
votes
1answer
548 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 ...
12
votes
3answers
388 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 ...
11
votes
1answer
1k 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:
...
9
votes
1answer
335 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 ...
8
votes
2answers
75 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 ...
3
votes
1answer
163 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 ...
3
votes
1answer
202 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 ...
2
votes
1answer
70 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... ...
2
votes
2answers
92 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 ...
2
votes
4answers
885 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
99 views
Where to find libClang documentation for haskell?
Where can I find documentation for the Haskell libClang bindings?
1
vote
1answer
106 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 ...
1
vote
1answer
100 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 ...
0
votes
1answer
118 views
Compiling Haddock with -XFlexibleInstances flag
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 ...