summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Hakyll/Main.hs15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/Hakyll/Main.hs b/lib/Hakyll/Main.hs
index ae2a5bc..2a31137 100644
--- a/lib/Hakyll/Main.hs
+++ b/lib/Hakyll/Main.hs
@@ -3,19 +3,22 @@
{-# LANGUAGE CPP #-}
module Hakyll.Main
- ( optionParser
- , commandParser
- , defaultParser
- , defaultParserPure
- , defaultParserPrefs
- , defaultParserInfo
+ ( -- * Entry points
, hakyll
, hakyllWith
, hakyllWithArgs
, hakyllWithExitCode
, hakyllWithExitCodeAndArgs
+
+ -- * Command line argument parsers
, Options(..)
, Command(..)
+ , optionParser
+ , commandParser
+ , defaultParser
+ , defaultParserPure
+ , defaultParserPrefs
+ , defaultParserInfo
) where