haddock-style-module
| Description | How to print module docstring |
|---|---|
| Options |
|
| Default | null |
| Ormolu | null |
| Since | v0.10.0.0 |
This option determines what Haddock style to use for the module docstring. When this option is set to null (the default), uses the same value as haddock-style.
Examples
{- |
Module: MyModule
Author: Joe Haskell
The primary API for my library.
-}
module MyModule where
-- |
-- Module: MyModule
-- Author: Joe Haskell
--
-- The primary API for my library.
module MyModule where
{-|
Module: MyModule
Author: Joe Haskell
The primary API for my library.
-}
module MyModule where
For more examples, see the test files.