summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorickc <ickc@users.noreply.github.com>2017-08-17 10:11:49 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-17 10:11:49 -0700
commit2a0e2e6fd675d08a426380b8d85f9fd05d067692 (patch)
tree29b2605e73253d223e76eeb2880667946b20f199
parentc175317d031985798fddac6ea7b35f44f64fd78c (diff)
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'
-rw-r--r--MANUAL.txt2
-rw-r--r--man/pandoc.12
-rw-r--r--src/Text/Pandoc/Writers/HTML.hs2
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) $