add plot filters
This commit is contained in:
parent
c8b98dccec
commit
34546914e5
|
@ -25,8 +25,12 @@ texenv = jinja2.Environment(
|
||||||
|
|
||||||
# Filters
|
# Filters
|
||||||
|
|
||||||
|
from .filters import includegraphics
|
||||||
texenv.filters['includegraphics'] = includegraphics
|
texenv.filters['includegraphics'] = includegraphics
|
||||||
|
|
||||||
|
from notes_tools.tools.marks_plottings import comp_radar, marks_hist
|
||||||
|
texenv.filters['comp_radar'] = comp_radar
|
||||||
|
texenv.filters['marks_hist'] = marks_hist
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print(texenv.list_templates())
|
print(texenv.list_templates())
|
||||||
|
|
Loading…
Reference in New Issue