summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Main.hs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 9d16c0d..2e9ebe4 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -218,14 +218,23 @@ import Zettel
--
data Options = Options
- { optBibliography :: Maybe FilePath,
+ { -- | Bibliography FILE (default: references.bib)
+ optBibliography :: Maybe FilePath,
+ -- | Bibliography FILE (default: bibliography.org)
optOrgBibliography :: Maybe FilePath,
+ -- | Csl FILE
optCsl :: Maybe FilePath,
+ -- | Index FILE (default: org-zettelkasten-index)
optIndex :: Maybe FilePath,
+ -- | output DIR
optOutput :: Maybe FilePath,
+ -- | Verbose output while processing files
optVerbose :: Int,
+ -- | Suppress all output
optQuiet :: Bool,
+ -- | Show current version
optShowVersion :: Bool,
+ -- | Show this help menu
optShowHelp :: Bool
}
deriving (Show, Eq)