34 lines
1.9 KiB
HTML
34 lines
1.9 KiB
HTML
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<!-- The configuration below is different from the main mathjax config because dollar signs make it easier
|
|
to integrate with Markdown. -->
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
tex2jax: {
|
|
inlineMath: [
|
|
["\\(","\\)"],
|
|
],
|
|
displayMath: [
|
|
["\\[","\\]"],
|
|
]
|
|
}
|
|
});
|
|
</script>
|
|
|
|
## This must appear after all mathjax-config blocks, so it is after the imports from the other templates.
|
|
## It can't be run through static.url because MathJax uses crazy url introspection to do lazy loading of MathJax extension libraries
|
|
<script type="text/javascript" src="/static/js/vendor/mathjax-MathJax-c9db6ac/MathJax.js?config=TeX-MML-AM_HTMLorMML-full"></script>
|
|
<!---<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"> </script>-->
|
|
<script type="text/javascript" src="${static.url('js/split.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/jquery.ajaxfileupload.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/Markdown.Converter.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/Markdown.Sanitizer.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/Markdown.Editor.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/jquery.autocomplete.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/jquery.tagsinput.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/mustache.js')}"></script>
|
|
<script type="text/javascript" src="${static.url('js/URI.min.js')}"></script>
|
|
<link href="${static.url('css/vendor/jquery.tagsinput.css')}" rel="stylesheet" type="text/css">
|
|
<link href="${static.url('css/vendor/jquery.autocomplete.css')}" rel="stylesheet" type="text/css">
|