From b744f27606fdae01321faa41c9d554e019560d41 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 17 Apr 2018 14:57:58 +0200 Subject: Add a little documentation about comments support (fixes #79) --- askama/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 3f0a267..3791283 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -259,6 +259,10 @@ //! The HTML special characters `&`, `<` and `>` will be replaced with their //! character entities unless the `escape` mode is disabled for a template. //! +//! ## Comments +//! +//! Askama supports block comments delimited by `{#` and `#}`. +//! //! # Optional functionality //! //! ## Rocket integration -- cgit