diff options
author | René Kijewski <kijewski@library.vetmed.fu-berlin.de> | 2023-04-03 18:34:33 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-05-31 17:29:22 +0200 |
commit | fe5d350f50ebc73300456c618dd265cc43a8f05a (patch) | |
tree | 62248a4f9a1137a1bbae114172f3eebfb0fa5032 /book | |
parent | a3ff30a5eaca6ffcf82dd152affef4725acf0aa8 (diff) | |
download | askama-fe5d350f50ebc73300456c618dd265cc43a8f05a.tar.gz askama-fe5d350f50ebc73300456c618dd265cc43a8f05a.tar.bz2 askama-fe5d350f50ebc73300456c618dd265cc43a8f05a.zip |
Allow delimiters with arbitrary length
Diffstat (limited to 'book')
-rw-r--r-- | book/src/configuration.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index 2311e7d..740160b 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -105,8 +105,8 @@ The following keys can currently be used to customize template syntax: * `expr_start`, defaults to `{{` * `expr_end`, defaults to `}}` -Values must be 2 characters long and start delimiters must all start with the same -character. If a key is omitted, the value from the default syntax is used. +Values must be at least two characters long. +If a key is omitted, the value from the default syntax is used. Here is an example of a custom escaper: |