sitepipe-0.4.0.1: A simple to understand static site generator

Safe HaskellNone
LanguageHaskell2010

SitePipe.Types

Synopsis

Documentation

type TemplatePath = String Source #

String alias; Path to a template

type GlobPattern = String Source #

String alias; Valid globbing pattern. Follows shell globbing, allows recursive * globs.

data Settings Source #

Global Settings

Constructors

Settings 
Instances
Show Settings Source # 
Instance details

Defined in SitePipe.Types

type SiteM a = ReaderT Settings (WriterT [String] IO) a Source #

A monad collecting site instructions. Use liftIO to perform arbitrary IO.