summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2020-02-26 12:04:08 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2020-02-26 12:05:57 +0100
commit7bb38b456ade0b6869b97776fdc0a0111697e401 (patch)
tree99c5d36559d3786b0b365c3ed0ae06852c39f5c8 /lib
parent0a1843b763764a2a7eb434b829b0dda4b624cbb0 (diff)
downloadhakyll-7bb38b456ade0b6869b97776fdc0a0111697e401.tar.gz
Reorganize Hakyll.Main export list
Diffstat (limited to 'lib')
-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