From 2a0e2e6fd675d08a426380b8d85f9fd05d067692 Mon Sep 17 00:00:00 2001 From: ickc Date: Thu, 17 Aug 2017 10:11:49 -0700 Subject: [PATCH] slidy uses https instead of http (#3848) grep -rl 'http://www.w3.org/Talks/Tools/Slidy2' . | xargs sed -i 's/http:\/\/www\.w3\.org\/Talks\/Tools\/Slidy2/https:\/\/www\.w3\.org\/Talks\/Tools\/Slidy2/g' --- MANUAL.txt | 2 +- man/pandoc.1 | 2 +- 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) $