aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-07-23 13:48:44 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-07-23 13:48:44 +0100
commit9b79475294fb01da5848e74f29645b8c9398dd8c (patch)
tree184217029ae32ff24a6cf76e74b29732821b03da /askama_shared
parentaab286e0c52d8aed3560566d1434ab6ec68a7013 (diff)
downloadaskama-9b79475294fb01da5848e74f29645b8c9398dd8c.tar.gz
askama-9b79475294fb01da5848e74f29645b8c9398dd8c.tar.bz2
askama-9b79475294fb01da5848e74f29645b8c9398dd8c.zip
Document mechanism for user-defined filters (fixes #102)
Diffstat (limited to 'askama_shared')
-rw-r--r--askama_shared/src/filters/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/askama_shared/src/filters/mod.rs b/askama_shared/src/filters/mod.rs
index e4caccd..181e27b 100644
--- a/askama_shared/src/filters/mod.rs
+++ b/askama_shared/src/filters/mod.rs
@@ -1,7 +1,8 @@
//! Module for built-in filter functions
//!
//! Contains all the built-in filter functions for use in templates.
-//! Currently, there is no way to define filters outside this module.
+//! You can define your own filters; for more information,
+//! see the top-level crate documentation.
#[cfg(feature = "serde-json")]
mod json;