Skip to content

Instantly share code, notes, and snippets.

@bobbicodes
Last active May 15, 2019 19:21
Show Gist options
  • Save bobbicodes/a2261da47cab22cd2bb433b399a9ed0f to your computer and use it in GitHub Desktop.
Save bobbicodes/a2261da47cab22cd2bb433b399a9ed0f to your computer and use it in GitHub Desktop.
Template for creating live Clojure notebooks with math
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>KLIPSE - MathJax Template</title>
<link rel="stylesheet" type="text/css" href="https://storage.googleapis.com/app.klipse.tech/css/codemirror.css">
<script>
window.klipse_settings = {
selector: '.language-klipse',
};
</script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body>
<h1>
<center>KLIPSE - MathJax Template</center>
</h1>
<h2>
$$\large{12x-5y = -20}$$
<pre><code class="language-klipse">
</code></pre>
</h2>
<script src="https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment