aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2015-06-09 12:37:35 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2015-06-09 12:37:35 -0700
commitdc0e5c34b711b6d7c3764cc1962acdf2307c698c (patch)
tree1fbcf86e544e06a06a21f6d11e974611791cac34
parent8c47bd63e86ef79efaa98b36af3b3ceb093cc035 (diff)
downloadpandoc-dc0e5c34b711b6d7c3764cc1962acdf2307c698c.tar.gz
Amends last commit: don't use https for google charts.
They don't have a certificate.
-rw-r--r--pandoc.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pandoc.hs b/pandoc.hs
index 8aa85befc..c2841a201 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -813,7 +813,7 @@ options =
(\arg opt -> do
let url' = case arg of
Just u -> u
- Nothing -> "https://chart.apis.google.com/chart?cht=tx&chl="
+ Nothing -> "http://chart.apis.google.com/chart?cht=tx&chl="
return opt { optHTMLMathMethod = WebTeX url' })
"URL")
"" -- "Use web service for HTML math"