diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-29 13:54:21 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-29 13:54:21 -0800 |
commit | f74c40b4605c52dcd4df828f95500fe645277517 (patch) | |
tree | 203188f6d189a5af76729677946565cb290b6d6f /src | |
parent | febbf5d818af46cecbfd8e3c704e967bbb61831d (diff) | |
download | pandoc-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.hs | 2 |
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, |