diff options
-rw-r--r-- | MANUAL.txt | 2 | ||||
-rw-r--r-- | man/pandoc.1 | 2 | ||||
-rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 639c5e7ee..596ba73f2 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -1320,7 +1320,7 @@ including all [reveal.js configuration options]. `slidy-url` : base URL for Slidy documents (defaults to - `http://www.w3.org/Talks/Tools/Slidy2`) + `https://www.w3.org/Talks/Tools/Slidy2`) `slideous-url` : base URL for Slideous documents (defaults to `slideous`) diff --git a/man/pandoc.1 b/man/pandoc.1 index aafd16070..574fc3b8e 100644 --- a/man/pandoc.1 +++ b/man/pandoc.1 @@ -1487,7 +1487,7 @@ logo for Beamer documents .TP .B \f[C]slidy\-url\f[] base URL for Slidy documents (defaults to -\f[C]http://www.w3.org/Talks/Tools/Slidy2\f[]) +\f[C]https://www.w3.org/Talks/Tools/Slidy2\f[]) .RS .RE .TP diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index c73af4604..9ac37a0ba 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -304,7 +304,7 @@ pandocToHtml opts (Pandoc meta blocks) = do defField "idprefix" (writerIdentifierPrefix opts) $ -- these should maybe be set in pandoc.hs defField "slidy-url" - ("http://www.w3.org/Talks/Tools/Slidy2" :: String) $ + ("https://www.w3.org/Talks/Tools/Slidy2" :: String) $ defField "slideous-url" ("slideous" :: String) $ defField "revealjs-url" ("reveal.js" :: String) $ defField "s5-url" ("s5/default" :: String) $ |