diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-12-10 10:44:43 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-25 17:07:41 +0100 |
commit | 87170e2af42336a71f07af6dc20d70b43738e086 (patch) | |
tree | cbc05a0e57893f826552b24da790cc1d8dd795e0 | |
parent | 767638a54e17c1d02222c717d5e1a116cca17e9d (diff) | |
download | pandoc-87170e2af42336a71f07af6dc20d70b43738e086.tar.gz |
Removed deprecated `--no-wrap` option.
-rw-r--r-- | MANUAL.txt | 4 | ||||
-rw-r--r-- | pandoc.hs | 7 |
2 files changed, 0 insertions, 11 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 21692c59f..9cfd6026a 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -578,10 +578,6 @@ General writer options will be nonsemantic newlines in the output as well). Automatic wrapping does not currently work in HTML output. -`--no-wrap` - -: Deprecated synonym for `--wrap=none`. - `--columns=`*NUMBER* : Specify length of lines in characters. This affects text wrapping @@ -469,13 +469,6 @@ options = "NUMBER") "" -- "Dpi (default 96)" - , Option "" ["no-wrap"] - (NoArg - (\opt -> do warn $ "--no-wrap is deprecated. " ++ - "Use --wrap=none or --wrap=preserve instead." - return opt { optWrapText = WrapNone })) - "" - , Option "" ["wrap"] (ReqArg (\arg opt -> |