Skip to content
Snippets Groups Projects
Commit 420c1c3e authored by Reynold Xin's avatar Reynold Xin
Browse files

[SPARK-2252] Fix MathJax for HTTPs.

Found out about this from the Hacker News link to GraphX which was using HTTPs.

@mengxr

Author: Reynold Xin <rxin@apache.org>

Closes #1189 from rxin/mllib-doc and squashes the following commits:

5328be0 [Reynold Xin] [SPARK-2252] Fix MathJax for HTTPs.
parent 56eb8af1
No related branches found
No related tags found
No related merge requests found
...@@ -136,21 +136,31 @@ ...@@ -136,21 +136,31 @@
<!-- MathJax Section --> <!-- MathJax Section -->
<script type="text/x-mathjax-config"> <script type="text/x-mathjax-config">
MathJax.Hub.Config({ MathJax.Hub.Config({
TeX: { equationNumbers: { autoNumber: "AMS" } } TeX: { equationNumbers: { autoNumber: "AMS" } }
}); });
</script> </script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script> <script>
MathJax.Hub.Config({ // Note that we load MathJax this way to work with local file (file://), HTTP and HTTPS.
tex2jax: { // We could use "//cdn.mathjax...", but that won't support "file://".
inlineMath: [ ["$", "$"], ["\\\\(","\\\\)"] ], (function(d, script) {
displayMath: [ ["$$","$$"], ["\\[", "\\]"] ], script = d.createElement('script');
processEscapes: true, script.type = 'text/javascript';
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'] script.async = true;
} script.onload = function(){
}); MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ["$", "$"], ["\\\\(","\\\\)"] ],
displayMath: [ ["$$","$$"], ["\\[", "\\]"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
};
script.src = ('https:' == document.location.protocol ? 'https://' : 'http://') +
'cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
d.getElementsByTagName('head')[0].appendChild(script);
}(document));
</script> </script>
</body> </body>
</html> </html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment