Initial commit

This commit is contained in:
2023-06-29 05:55:36 +02:00
commit 53433866bb
5 changed files with 207 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# https://github.com/kolypto/j2cli#customization
# http://jinja.pocoo.org/docs/2.10/api/#jinja2.Environment
def j2_environment_params(): return dict(
autoescape = True,
trim_blocks = True,
lstrip_blocks = True,
keep_trailing_newline = True,
extensions = (
"jinja2.ext.do",
"jinja2.ext.loopcontrols"
),
)