markup-0.0.1: Abstraction for markup languages

Safe HaskellNone
LanguageHaskell2010

Data.Markup.Types

Synopsis

Documentation

newtype InlineMarkupT i m a Source

Mirror of the ReaderT monad transformer - used to coerce markup to inline rendering.

Constructors

InlineMarkupT 

Fields

runInlineMarkupT :: i -> m a
 

newtype HostedMarkupT i m a Source

Mirror of the ReaderT monad transformer - used to coerce markup to hosted rendering.

Constructors

HostedMarkupT 

Fields

runHostedMarkupT :: i -> m a
 

newtype LocalMarkupT i m a Source

Mirror of the ReaderT monad transformer - used to coerce markup to local rendering.

Constructors

LocalMarkupT 

Fields

runLocalMarkupT :: i -> m a
 

Instances