##// END OF EJS Templates
`fab css` checks whether it needs to do anything...
`fab css` checks whether it needs to do anything makefile-style adds `force` arg to override, minify implies force.

File last commit:

r15846:6c00b9d8
r17344:7b9b4f92
Show More
mathjax.tpl
22 lines | 868 B | application/vnd.groove-tool-template | SmartyLexer
{%- macro mathjax() -%}
<!-- Load mathjax -->
<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
<!-- MathJax configuration -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
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 }
}
});
</script>
<!-- End of mathjax configuration -->
{%- endmacro %}