_js_dependencies.html 1.72 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

<%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="${static.url('js/vendor/split.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/jquery.ajaxfileupload.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/Markdown.Converter.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/Markdown.Sanitizer.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/Markdown.Editor.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/jquery.autocomplete.js')}"></script>
  <script type="text/javascript" src="${static.url('js/vendor/jquery.tagsinput.js')}"></script>
29
  <script type="text/javascript" src="${static.url('js/vendor/mustache.js')}"></script>
30 31
  <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">