Skip to content

Instantly share code, notes, and snippets.

View markandrus's full-sized avatar
🍊
orange

Mark Roberts markandrus

🍊
orange
View GitHub Profile
@markandrus
markandrus / Jekyll and Octopress Liquid tag for MathJax.rb
Last active December 17, 2015 05:39 — forked from jessykate/Jekyll nd Octopress Liquid tag for MathJax.rb
This edit improves compatibility with Markdown processors that output XHTML.
module Jekyll
class MathJaxBlockTag < Liquid::Tag
def render(context)
"<script type=\"math/tex; mode=display\">\n%<![CDATA["
end
end
class MathJaxInlineTag < Liquid::Tag
def render(context)
"<script type=\"math/tex\">\n%<![CDATA["
end