LEFT | RIGHT |
1 # Custom filters # | 1 # Custom filters # |
2 | 2 |
3 The `filters` directory can define custom Jinja2 filters which will be available | 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. | 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 | 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 | 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 | 7 filter is invoked. For more information on Jinja2 filters see |
8 [official documentation](http://jinja.pocoo.org/docs/dev/api/#writing-filters). | 8 [official documentation](http://jinja.pocoo.org/docs/dev/api/#writing-filters). |
9 | 9 |
| 10 ----- |
10 Prev: [Custom Jinja2 global functions and variables (`globals`)](globals.md) | U
p: [Home](../../README.md) | Next: [Localization files (`locales`)](locales.md) | 11 Prev: [Custom Jinja2 global functions and variables (`globals`)](globals.md) | U
p: [Home](../../README.md) | Next: [Localization files (`locales`)](locales.md) |
LEFT | RIGHT |