tabl-1.0.3: src/Text/Tabl/Environment.hs
{- |
Module : Text.Tabl.Environment
Description : Table environments
Copyright : (c) 2016-2017 Daniel Lovasko
License : BSD2
Maintainer : Daniel Lovasko <daniel.lovasko@gmail.com>
Stability : stable
Portability : portable
Definition of various environments for table rendering.
-}
module Text.Tabl.Environment
( Environment(..)
) where
-- | Output environment that declares the way that the table will be
-- rendered.
data Environment
= EnvAscii -- ^ ASCII-art suitable for the command-line
| EnvLatex -- ^ LaTeX source code
deriving (Show)