hakyll-1.1: A simple static site generator library.

Text.Hakyll.Hakyll

Description

Module describing the Hakyll monad stack.

Synopsis

Documentation

data HakyllConfiguration Source

Hakyll global configuration type.

Constructors

HakyllConfiguration 

Fields

additionalContext :: Context

An additional context to use when rendering. This additional context is used globally.

type Hakyll = ReaderT HakyllConfiguration IOSource

Our custom monad stack.

askHakyll :: (HakyllConfiguration -> a) -> Hakyll aSource

Simplified ask function for the Hakyll monad stack.