Haddock is invoked from the command line, like so:
haddock [option ...] file ...
Where each file is a filename containing a Haskell source module (.hs) or a Literate Haskell source module (.lhs) or just a module name.
All the modules specified on the command line will be processed together. When one module refers to an entity in another module being processed, the documentation will link directly to that entity.
Entities that cannot be found, for example because they are in a module that isn’t being processed as part of the current batch, simply won’t be hyperlinked in the generated documentation. Haddock will emit warnings listing all the identifiers it couldn’t resolve.
The modules should not be mutually recursive, as Haddock don’t like swimming in circles.
Note that while older version would fail on invalid markup, this is considered a bug in the new versions. If you ever get failed parsing message, please report it.
You must also specify an option for the output format. Currently only the --html option for HTML, the --hoogle option for outputting Hoogle data, and the --latex option are functional.
The packaging tool Cabal has Haddock support, and is often used instead of invoking Haddock directly.
The following options are available:
Tell GHC that its lib directory is dir. Can be used to override the default path.
Read the interface file in file, which must have been produced by running Haddock with the --dump-interface option. The interface describes a set of modules whose HTML documentation is located in docpath (which may be a relative pathname). The docpath is optional, and defaults to “.”. The srcpath is optional but has no default value.
This option allows Haddock to produce separate sets of documentation with hyperlinks between them. The docpath is used to direct hyperlinks to point to the right files; so make sure you don’t move the HTML files later or these links will break. Using a relative docpath means that a documentation subtree can still be moved around without breaking links.
Similarly to docpath, srcpath is used generate cross-package hyperlinks but within sources rendered with --hyperlinked-source option.
Multiple --read-interface options may be given.
Produce an interface file [1] in the file file. An interface file contains information Haddock needs to produce more documentation that refers to the modules currently being processed - see the --read-interface option for more details. The interface file is in a binary format; don’t try to read it.
Dumps a binary interface file to stdout in a human readable fashion. Uses json as output format.
[1] | Haddock interface files are not the same as Haskell interface files, I just couldn’t think of a better name. |
Generate documentation in HTML format. Several files will be generated into the current directory (or the specified directory if the -o option is given), including the following:
Specify a custom URL for a mathjax-compatible JS script. By default, this is set to MathJax.
Generate documentation in LaTeX format. Several files will be generated into the current directory (or the specified directory if the -o option is given), including the following:
The top-level LaTeX source file; to format the documentation into PDF you might run something like this:
$ pdflatex package.tex
This option lets you override the default style used by the LaTeX generated by the --latex option. Normally Haddock puts a standard haddock.sty in the output directory, and includes the command \usepackage{haddock} in the LaTeX source. If this option is given, then haddock.sty is not generated, and the command is instead \usepackage{style}.
Generate an index file for the Hoogle search engine. One text file will be generated into the current directory (or the specified directory if the -o is given). Note that the --package-name is required.
Since the output is intended to be parsed by Hoogle, some conventions need to be upheld:
Every entity should span exactly one line.
newtype ReaderT r (m :: * -> *) a :: * -> (* -> *) -> * -> *The one exception to this rule is classes. The body of a class is split up with one class member per line, an opening brace on the line of the header, and a closing brace on a new line after the class.
class Foo a where { foo :: a -> a -> Baz a; type family Baz a; type Baz a = [(a, a)]; }Entites that are exported only indirectly (for instance data constructors visible via a ReaderT(..) export) have their names wrapped in square brackets.
[ReaderT] :: (r -> m a) -> ReaderT r m a [runReaderT] :: ReaderT r m a -> r -> m a
Generate hyperlinked source code (as HTML web page). All rendered files will be put into src/ subfolder of output directory.
Usually, this should be used in combination with --html option - generated documentation will then contain references to appropriate code fragments. Previously, this behaviour could be achieved by generating sources using external tool and specifying --source-base, --source-module, --source-entity and related options. Note that these flags are ignored once --hyperlinked-source is set.
In order to make cross-package source hyperlinking possible, appropriate source paths have to be set up when providing interface files using --read-interface option.
Use custom CSS file for sources rendered by the --hyperlinked-source option. If no custom style file is provided, Haddock will use default one.
Reserved for future use (output documentation in DocBook XML format).
Include links to the source files in the generated documentation. Use the --source-base option to add a source code link in the header bar of the contents and index pages. Use the --source-module to add a source code link in the header bar of each module page. Use the --source-entity option to add a source code link next to the documentation for every value and type in each module. --source-entity-line is a flag that gets used for entities that need to link to an exact source location rather than a name, eg. since they were defined inside a Template Haskell splice.
In each case URL is the base URL where the source files can be found. For the per-module and per-entity URLs, the following substitutions are made within the string URL:
For example, if your sources are online under some directory, you would say haddock --source-base=url/ --source-module=url/%F
If you have html versions of your sources online with anchors for each type and function name, you would say haddock --source-base=url/ --source-module=url/%M.html --source-entity=url/%M.html#%N
For the %{MODULE} substitution you may want to replace the . character in the module names with some other character (some web servers are known to get confused by multiple . characters in a file name). To replace it with a character c use %{MODULE/./c}.
Similarly, for the %{FILE} substitution you may want to replace the / character in the file names with some other character (especially for links to colourised entity source code with a shared css file). To replace it with a character c use %{FILE///c}/
One example of a tool that can generate syntax-highlighted HTML from your source code, complete with anchors suitable for use from haddock, is hscolour.
Deprecated aliases for --source-module
documentation. This feature would typically be used in conjunction with a Wiki system.
Use the --comments-base option to add a user comments link in the header bar of the contents and index pages. Use the --comments-module to add a user comments link in the header bar of each module page. Use the --comments-entity option to add a comments link next to the documentation for every value and type in each module.
In each case URL is the base URL where the corresponding comments page can be found. For the per-module and per-entity URLs the same substitutions are made as with the --source-module and --source-entity options above.
For example, if you want to link the contents page to a wiki page, and every module to subpages, you would say haddock --comments-base=url --comments-module=url/%M
If your Wiki system doesn’t like the . character in Haskell module names, you can replace it with a different character. For example to replace the . characters with _ use haddock --comments-base=url --comments-module=url/%{MODULE/./_}. Similarly, you can replace the / in a file name (may be useful for entity comments, but probably not).
Specify a theme to be used for HTML (--html) documentation. If given multiple times then the pages will use the first theme given by default, and have alternate style sheets for the others. The reader can switch between themes with browsers that support alternate style sheets, or with the “Style” menu that gets added when the page is loaded. If no themes are specified, then just the default built-in theme (“Linuwial”) is used.
The path parameter can be one of:
Includes the built-in themes (“Linuwial”, “Ocean”, and “Classic”). Can be combined with --theme. Note that order matters: The first specified theme will be the default.
Enable use of Unicode characters in HTML output.
Specify a file containing documentation which is placed on the main contents page under the heading “Description”. The file is parsed as a normal Haddock doc comment (but the comment markers are not required).
Use title as the page heading for each page in the documentation.This will normally be the name of the library being documented.
The title should be a plain string (no markup please!).
Specify the name of the package being documented.
Specify the version of the package being documented.
Specify how identifiers are qualified.
mode should be one of
Example: If you generate documentation for module A, then the identifiers A.x, A.B.y and C.z are qualified as follows.
Specify how @since annotations are qualified.
mode should be one of
Display help and exit.
Output the version of GHC which Haddock expects to find at :option:-B and exit.
Output the path to the GHC (which Haddock computes based on :option:-B) and exit.
Output the path to the GHC lib directory (which Haddock computes based on :option:-B) and exit.
Increase verbosity. Currently this will cause Haddock to emit some extra warnings, in particular about modules which were imported but it had no information about (this is often quite normal; for example when there is no information about the Prelude).
When generating HTML, do not generate an index. Instead, redirect the Contents and/or Index link on each page to URL. This option is intended for use in conjunction with --gen-contents and/or --gen-index for generating a separate contents and/or index covering multiple libraries.
Generate an HTML contents and/or index containing entries pulled from all the specified interfaces (interfaces are specified using -i or --read-interface). This is used to generate a single contents and/or index for multiple sets of Haddock documentation.
Causes Haddock to behave as if every module has the ignore-exports attribute (Module Attributes). This might be useful for generating implementation documentation rather than interface documentation, for example.
Causes Haddock to behave as if module module has the hide attribute. (Module Attributes).
Causes Haddock to behave as if module module does not have the hide attribute. (Module Attributes).
Causes Haddock to behave as if no modules have the hide attribute. (Module Attributes).
Causes Haddock to behave as if module module has the show-extensions attribute. (Module Attributes).
Pass option to GHC. Note that there is a double dash there, unlike for GHC.
Prints out the version of the binary Haddock interface files that this version of Haddock generates.
Prints out space-separated versions of binary Haddock interface files that this version of Haddock is compatible with.
DANGEROUS Causes Haddock to ignore the interface versions of binary Haddock interface files. This can make Haddock crash during deserialization of interface files.
Do not use a temporary directory for reading and writing compilation output files (.o, .hi, and stub files). Instead, use the present directory or another directory that you have explicitly told GHC to use via the --optghc flag.
This flag can be used to avoid recompilation if compilation files already exist. Compilation files are produced when Haddock has to process modules that make use of Template Haskell, in which case Haddock compiles the modules using the GHC API.
Print extra information about any undocumented entities.