experiments

All kinds of coding experiments
Log | Files | Refs | Submodules

index.html (668B)


      1 <html>
      2 <head>
      3     <title>Asciidoc Editor</title>
      4     <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" async></script>
      5     <script type="text/x-mathjax-config">
      6         MathJax.Hub.Config({
      7             extensions: ["tex2jax.js"],
      8             jax: ["input/TeX", "output/HTML-CSS"],
      9             tex2jax: {
     10                 inlineMath: [ ['$','$'], ["\\(","\\)"] ],
     11                 displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
     12                 processEscapes: true
     13             },
     14             "HTML-CSS": { fonts: ["TeX"] }
     15         });
     16     </script>
     17 </head>
     18 <body>
     19     <div id="app"></div>
     20     <script src="dist/app.js"></script>
     21 </body>
     22 </html>