summaryrefslogtreecommitdiff
path: root/pandoc.hs
diff options
context:
space:
mode:
Diffstat (limited to 'pandoc.hs')
-rw-r--r--pandoc.hs15
1 files changed, 0 insertions, 15 deletions
diff --git a/pandoc.hs b/pandoc.hs
index 6bc2a024a..df50d01d0 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -39,7 +39,6 @@ import Text.Pandoc.Shared ( tabFilter, readDataFileUTF8, readDataFile,
safeRead, headerShift, normalize, err, warn,
openURL )
import Text.Pandoc.MediaBag ( mediaDirectory, extractMediaBag, MediaBag )
-import Text.Pandoc.ManPages ( manPandoc1, manPandocMarkdown5 )
import Text.Pandoc.XML ( toEntities )
import Text.Pandoc.SelfContained ( makeSelfContained )
import Text.Pandoc.Process (pipeProcess)
@@ -870,20 +869,6 @@ options =
(\opt -> return opt { optIgnoreArgs = True }))
"" -- "Ignore command-line arguments."
- , Option "" ["man1"]
- (NoArg
- (\_ -> do
- manPandoc1 >>= UTF8.hPutStr stdout
- exitWith ExitSuccess ))
- "" -- "Print pandoc.1 man page"
-
- , Option "" ["man5"]
- (NoArg
- (\_ -> do
- manPandocMarkdown5 >>= UTF8.hPutStr stdout
- exitWith ExitSuccess ))
- "" -- "Print pandoc_markdown.5 man page"
-
, Option "" ["verbose"]
(NoArg
(\opt -> return opt { optVerbose = True }))