Created
February 18, 2011 23:37
-
-
Save jessykate/834610 to your computer and use it in GitHub Desktop.
A simple liquid tag for Jekyll/Octopress that converts {% m %} and {% em %} into inline math, and {% math %} and {% endmath %} into block equations, by replacing with the appropriate MathJax script tags.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
class MathJaxBlockTag < Liquid::Tag | |
def render(context) | |
'<script type="math/tex; mode=display">' | |
end | |
end | |
class MathJaxInlineTag < Liquid::Tag | |
def render(context) | |
'<script type="math/tex">' | |
end | |
end | |
class MathJaxEndTag < Liquid::Tag | |
def render(context) | |
'</script>' | |
end | |
end | |
end | |
Liquid::Template.register_tag('math', Jekyll::MathJaxBlockTag) | |
Liquid::Template.register_tag('m', Jekyll::MathJaxInlineTag) | |
Liquid::Template.register_tag('endmath', Jekyll::MathJaxEndTag) | |
Liquid::Template.register_tag('em', Jekyll::MathJaxEndTag) |
Jekyll's default Markdown renderer has built in mathjax support: http://kramdown.gettalong.org/math_engine/mathjax.html
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems a problem: when '&' is used in block equations, it would cause a render error, as '&' is an illegal character in raw string.