diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-11 23:52:08 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-11 23:57:36 -0800 |
commit | b747243e8da58f0692f7d9de8c3dd3e5e02f8a9b (patch) | |
tree | 242a9cc884707625cfa2520a87428817f532883e | |
parent | 536b6bf538a95f6db6ed41b72257f8b09fd26886 (diff) | |
download | pandoc-b747243e8da58f0692f7d9de8c3dd3e5e02f8a9b.tar.gz |
Removed deprecated options `--offline` and `--html5`.
These have been deprecated forever.
-rw-r--r-- | README | 9 | ||||
-rw-r--r-- | pandoc.hs | 16 |
2 files changed, 0 insertions, 25 deletions
@@ -614,15 +614,6 @@ Options affecting specific writers zoom or speaker notes) may not work in an offline "self-contained" `reveal.js` slide show. -`--offline` - -: Deprecated synonym for `--self-contained`. - -`-5`, `--html5` - -: Produce HTML5 instead of HTML4. This option has no effect for writers - other than `html`. (*Deprecated:* Use the `html5` output format instead.) - `--html-q-tags` : Use `<q>` tags for quotes in HTML. @@ -569,22 +569,6 @@ options = optStandalone = True })) "" -- "Make slide shows include all the needed js and css" - , Option "" ["offline"] - (NoArg - (\opt -> do warn "--offline is deprecated. Use --self-contained instead." - return opt { optSelfContained = True, - optStandalone = True })) - "" -- "Make slide shows include all the needed js and css" - -- deprecated synonym for --self-contained - - , Option "5" ["html5"] - (NoArg - (\opt -> do - warn $ "--html5 is deprecated. " - ++ "Use the html5 output format instead." - return opt { optHtml5 = True })) - "" -- "Produce HTML5 in HTML output" - , Option "" ["html-q-tags"] (NoArg (\opt -> |