From 6eb8e4f65c159204413b294a6b47007847ad1577 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sat, 23 Jun 2018 18:16:21 +0200 Subject: Allow accidentally disabled join filter --- askama_shared/src/filters/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'askama_shared') 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", -- cgit