#!/bin/env ruby # encoding: utf-8 module Jekyll class MathJaxBlockTag < Liquid::Tag def render(context) '' 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)