##// END OF EJS Templates
refuse to run js tests with phantom + tornado 4...
refuse to run js tests with phantom + tornado 4 websocket connections fail with 426 because phantomjs implements a super old draft of webosockets that recent tornado doesn't support This refused to run in that situation with an informative message.

File last commit:

r17751:170baf30
r18356:b3a696fb
Show More
mathjax.tpl
22 lines | 856 B | application/vnd.groove-tool-template | SmartyLexer
damianavila
Added a math jinja macro containing the scripts to load mathjax.
r14150 {%- macro mathjax() -%}
MinRK
remove unnecessary onload hack from mathjax macro
r15846 <!-- Load mathjax -->
MinRK
update mathjax CDN url in nbconvert template
r17751 <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
damianavila
Added a math jinja macro containing the scripts to load mathjax.
r14150 <!-- MathJax configuration -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
damianavila
Fixed mathjax macro to be synced with the mathjax config in the live notebook.
r14199 tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
// Center justify equations in code and markdown cells. Elsewhere
// we use CSS to left justify single line equations in code cells.
displayAlign: 'center',
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}},
linebreaks: { automatic: true }
}
damianavila
Added a math jinja macro containing the scripts to load mathjax.
r14150 });
</script>
<!-- End of mathjax configuration -->
{%- endmacro %}