feat(filter): Support filter tag

This commit is contained in:
Kyle Fuller
2016-11-30 18:44:44 +00:00
parent 2ebb79df8b
commit 2be672c6a5
6 changed files with 91 additions and 0 deletions

View File

@@ -13,6 +13,15 @@
path. Any template names that try to escape the base path will raise a
`SuspiciousFileOperation` error.
- New `{% filter %}` tag allowing you to perform a filter across the contents
of a block.
```html+django
{% filter lowercase %}
This Text Will Be Lowercased.
{% endfilter %}
```
## 0.7.1