authoring-0.1.0.0: A library for writing papers

Safe HaskellNone

Text.Authoring.Combinator.Meta

Synopsis

Documentation

braces :: (MonadWriter t m, HasDocument t) => m () -> m ()Source

wrap the argument x using curly braces {x}

command1 :: (MonadWriter t m, HasDocument t) => Text -> m () -> m ()Source

command1 x con = x{con}

environment :: (MonadWriter t m, HasDocument t) => Text -> m () -> m ()Source

environment x con = begin{x}conend{x}