3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-07-02 20:14:05 +00:00
coope/gestion/environment.py

12 lines
351 B
Python
Raw Normal View History

2019-01-05 23:01:30 +00:00
from django_tex.environment import environment
def latex_safe(value):
return str(value).replace('_', '\_').replace('$', '\$').replace('&', '\&').replace('#', '\#').replace('{', '\{').replace('}','\}')
def my_environment(**options):
env = environment(**options)
env.filters.update({
'latex_safe': latex_safe
})
return env