diff --git a/README b/README index f9de43aaf..8f00ac3a8 100644 --- a/README +++ b/README @@ -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. diff --git a/pandoc.hs b/pandoc.hs index b571c388f..eebe57299 100644 --- a/pandoc.hs +++ b/pandoc.hs @@ -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 ->