aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2011-12-29 13:54:21 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2011-12-29 13:54:21 -0800
commitf74c40b4605c52dcd4df828f95500fe645277517 (patch)
tree203188f6d189a5af76729677946565cb290b6d6f /src
parentfebbf5d818af46cecbfd8e3c704e967bbb61831d (diff)
downloadpandoc-f74c40b4605c52dcd4df828f95500fe645277517.tar.gz
Don't use `--smart` automatically with `man` output.
Previously pandoc used smart mode automatically when `man` output was selected.
Diffstat (limited to 'src')
-rw-r--r--src/pandoc.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index 9fac0f56e..5ac7a6d23 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -829,7 +829,7 @@ main = do
stateStandalone = standalone',
stateCitations = map CSL.refId refs,
stateSmart = smart || writerName' `elem`
- ["latex", "context", "latex+lhs", "man"],
+ ["latex", "context", "latex+lhs"],
stateColumns = columns,
stateStrict = strict,
stateIndentedCodeClasses = codeBlockClasses,