coleslaw/plugins/mathjax.lisp

19 lines
446 B
Common Lisp
Raw Normal View History

(defpackage :coleslaw-mathjax
(:use :cl :coleslaw))
2011-04-19 13:36:17 -04:00
(in-package :coleslaw-mathjax)
(defvar *mathjax-header* "<script type=\"text/x-mathjax-config\">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$$','$$']]
}
});
</script>
<script type=\"text/javascript\"
src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\">
</script>")
(defun enable ()
(coleslaw:add-injection *mathjax-header* :head))