hdocs-0.4.1.0: Haskell docs tool

Safe HaskellNone
LanguageHaskell98

HDocs.Haddock

Contents

Synopsis

Documentation functions

readHaddock :: FilePath -> ErrorT String IO (Map String ModuleDocMap) Source

Read docs from .haddock file

readSource :: [String] -> FilePath -> ErrorT String IO (String, ModuleDocMap) Source

Read docs for haskell module

Extract docs

Utility functions

haddockFiles :: [String] -> ErrorT String IO [FilePath] Source

Get list of haddock files in package db

readPackageInterfaces :: PackageConfig -> ErrorT String IO [InstalledInterface] Source

Read installed interfaces for package

lookupNameDoc :: Name -> Map String ModuleDocMap -> Maybe (Doc String) Source

Lookup doc for Name

module HDocs.Base