diff options
Diffstat (limited to '')
| -rw-r--r-- | askama_shared/src/filters/mod.rs | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/askama_shared/src/filters/mod.rs b/askama_shared/src/filters/mod.rs index 9fc03b6..c9c6bdf 100644 --- a/askama_shared/src/filters/mod.rs +++ b/askama_shared/src/filters/mod.rs @@ -18,10 +18,11 @@ use escaping::{self, MarkupDisplay};  // Askama or should refer to a local `filters` module. It should contain all the  // filters shipped with Askama, even the optional ones (since optional inclusion  // in the const vector based on features seems impossible right now). -pub const BUILT_IN_FILTERS: [&str; 10] = [ +pub const BUILT_IN_FILTERS: [&str; 11] = [      "e",      "escape",      "format", +    "join",      "lower",      "lowercase",      "safe",  | 
