blob: c5c77d49b8c095581378f39f211902fab7712fe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- | This (quite small) module exports the datatype used for contexts. A
-- @Context@ is a simple key-value mapping. You can render these @Context@s
-- with templates, and manipulate them in various ways.
module Text.Hakyll.Context
( Context
) where
import Data.Map (Map)
-- | Datatype used for key-value mappings.
type Context = Map String String
|