diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-12-10 10:08:24 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-12-10 10:08:24 -0800 |
commit | 1fd642dd30f92ceb6298369f2e1b6b7e9b67c665 (patch) | |
tree | 83f4c238f074de21f9f1584137eb51aa591f9240 /app | |
parent | a3eb87b2eab9def3e28364b43300043f5e13268d (diff) | |
download | pandoc-1fd642dd30f92ceb6298369f2e1b6b7e9b67c665.tar.gz |
Move executable to app directory.
Otherwise we have problems with cabal repl.
Diffstat (limited to 'app')
-rw-r--r-- | app/pandoc.hs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/pandoc.hs b/app/pandoc.hs new file mode 100644 index 000000000..9ed3b9e9f --- /dev/null +++ b/app/pandoc.hs @@ -0,0 +1,22 @@ +{-# LANGUAGE NoImplicitPrelude #-} +{- | + Module : Main + Copyright : Copyright (C) 2006-2020 John MacFarlane + License : GNU GPL, version 2 or above + + Maintainer : John MacFarlane <jgm@berkeley@edu> + Stability : alpha + Portability : portable + +Parses command-line options and calls the appropriate readers and +writers. +-} +module Main where +import Prelude +import qualified Control.Exception as E +import Text.Pandoc.App (convertWithOpts, defaultOpts, options, parseOptions) +import Text.Pandoc.Error (handleError) + +main :: IO () +main = E.catch (parseOptions options defaultOpts >>= convertWithOpts) + (handleError . Left) |