##// END OF EJS Templates
Create exceptions file to house all of the convert specific exceptions....
Create exceptions file to house all of the convert specific exceptions. Refactored 'exporter' Lots of changes....

File last commit:

r10386:6416b524
r10431:d8dd6393
Show More
initmathjax.js
16 lines | 534 B | application/javascript | JavascriptLexer
MinRK
add some basic css/js for HTML export
r7913 init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}
init_mathjax();