aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Text/Pandoc/App.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs
index 9c830c85c..2fb7c92db 100644
--- a/src/Text/Pandoc/App.hs
+++ b/src/Text/Pandoc/App.hs
@@ -287,7 +287,9 @@ convertWithOpts opts = do
"Specify an output file using the -o option, or " ++
"use '-o -' to force output to stdout."
- let convertTabs = tabFilter (if optPreserveTabs opts || readerName == "t2t"
+ let convertTabs = tabFilter (if optPreserveTabs opts ||
+ readerName == "t2t" ||
+ readerName == "man"
then 0
else optTabStop opts)