Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 # Custom filters # | |
2 | |
3 The `filters` directory can define custom Jinja2 filters which will be available | |
4 in all Jinja2 templates. The file name defines the filter name, e.g. | |
5 `filters/myfilter.py` will define a filter named `myfilter`. This file should | |
6 also contain a function called `myfilter`, this one will be called when the | |
7 filter is invoked. For more information on Jinja2 filters see | |
8 [official documentation](http://jinja.pocoo.org/docs/dev/api/#writing-filters). | |
OLD | NEW |