aboutsummaryrefslogtreecommitdiff
path: root/pandoc.hs
diff options
context:
space:
mode:
Diffstat (limited to 'pandoc.hs')
-rw-r--r--pandoc.hs7
1 files changed, 5 insertions, 2 deletions
diff --git a/pandoc.hs b/pandoc.hs
index 298161249..abee2ac50 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -1,4 +1,7 @@
-{-# LANGUAGE CPP, TupleSections, ScopedTypeVariables, PatternGuards #-}
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE PatternGuards #-}
+{-# LANGUAGE ScopedTypeVariables #-}
+{-# LANGUAGE TupleSections #-}
{-
Copyright (C) 2006-2016 John MacFarlane <jgm@berkeley.edu>
@@ -30,7 +33,7 @@ Parses command-line options and calls the appropriate readers and
writers.
-}
module Main where
-import Text.Pandoc.App (defaultOpts, convertWithOpts, parseOptions, options)
+import Text.Pandoc.App (convertWithOpts, defaultOpts, options, parseOptions)
main :: IO ()
main = parseOptions options defaultOpts >>= convertWithOpts