aboutsummaryrefslogtreecommitdiff
path: root/src
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 /src
parentc175317d031985798fddac6ea7b35f44f64fd78c (diff)
downloadpandoc-2a0e2e6fd675d08a426380b8d85f9fd05d067692.tar.gz
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'
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Writers/HTML.hs2
1 files changed, 1 insertions, 1 deletions
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) $