+.. currentmodule:: jinja2
+
Jinja Changelog
===============
unreleased
+- Async support is only loaded the first time an
+ :class:`~environment.Environment` enables it, in order to avoid a
+ slow initial import. (`#765`_)
+
+.. _#765: https://github.com/pallets/jinja/issues/765
+
Version 2.10
------------
something else>``.
The `else` part is optional. If not provided, the else block implicitly
-evaluates into an undefined object:
+evaluates into an undefined object::
-.. sourcecode:: jinja
-
- {{ '[%s]' % page.title if page.title }}
+ {{ ('[%s]' % page.title) if page.title }}
.. _builtin-filters: