##// END OF EJS Templates
Implement atomic save...
Implement atomic save Ping @fperez, this should avoid issues with corrupted/lost notebooks when the disk is full, though I haven't worked out how to test it just yet. Closes gh-6254

File last commit:

r15846:6c00b9d8
r17557:4f0beac1
Show More
mathjax.tpl
22 lines | 868 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 -->
<script src="https://c328740.ssl.cf1.rackcdn.com/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 %}