haddock
haddock copied to clipboard
Haskell Documentation Tool
See #1474 for redundant id, redundant return, redundant if, redundant , redundant map and redundant lambda.
See #1474.
Hello, I decided to write an Org backend to Haddock, so that haskell library documentation can be generated in Org Mode markup. Compared to the existing backends (html, latex and...
It would be really nice if, when I have orphan `type instance ...` statements, they would show up in the documentation of the file where I'm defining them. Compare: ```...
As noted in [this issue](https://github.com/tweag/rules_haskell/issues/229): > If haskell_doc is called with more than one job, the related instances of Haddock will concurrently try to create the same temporary directory, and...
I noticed this in Esqueleto although it is probably reproducible in packages with fewer dependencies. Reproduction: ``` $ nix-build '' -A haskellPackages.esqueleto.doc /nix/store/9mh0h5ll38wxwan66r79n7ysfvfsw16v-esqueleto-3.5.5.0-doc $ firefox result-doc/share/doc/esqueleto-3.5.5.0/html/Database-Esqueleto.html#t:PersistField ``` Then click the...
When the search box gets updated, wait 150ms before searching.
The idea is to have an option to disable hyperlinked sources on modules whose source is programmatically generated, huge, and uninteresting. You can tell Haddock to not generate hyperlinked sources...
**Original reporter**: _duncan_ Suppose you're refactoring to use smart constructors. So you switch from exporting: ``` haskell data WindowBits = WindowBits Int | DefaultWindowBits ``` to: ``` haskell data WindowBits...