Removed deprecated options --offline
and --html5
.
These have been deprecated forever.
This commit is contained in:
parent
536b6bf538
commit
b747243e8d
2 changed files with 0 additions and 25 deletions
9
README
9
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.
|
||||
|
|
16
pandoc.hs
16
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 ->
|
||||
|
|
Loading…
Add table
Reference in a new issue