sitepipe-0.3.0.0: 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 

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

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