custom/templatetags/mathjax.py @ 47f9b4b91599

Permutation patterns
author Steve Losh <steve@stevelosh.com>
date Thu, 10 Dec 2015 19:53:35 +0000
parents (none)
children (none)
from django import template

register = template.Library()


def mathjax(value):
    return "<div>$$ " + value + " $$</div>"

register.filter('mathjax', mathjax)