module Language.Drasil.Format where
data DocType = SRS | Website | Lesson
data Format = TeX | Plain | HTML | Jupyter | MDBook
instance Show Format where
show :: Format -> String
show Format
TeX = String
"PDF"
show Format
Plain = String
"Plain"
show Format
HTML = String
"HTML"
show Format
Jupyter = String
"Jupyter"
show Format
MDBook = String
"mdBook"
instance Show DocType where
show :: DocType -> String
show DocType
Lesson = String
"Lesson"
show DocType
SRS = String
"SRS"
show DocType
Website = String
"Website"