Home | History | Annotate | Download | only in jinja2

Lines Matching refs:jinja2

3     jinja2.ext
13 from jinja2 import nodes
14 from jinja2.defaults import BLOCK_START_STRING, \
19 from jinja2.environment import Environment
20 from jinja2.runtime import concat
21 from jinja2.exceptions import TemplateAssertionError, TemplateSyntaxError
22 from jinja2.utils import contextfunction, import_string, Markup
23 from jinja2._compat import next, with_metaclass, string_types, iteritems
88 """It's passed a :class:`~jinja2.lexer.TokenStream` that can be used
90 :class:`~jinja2.lexer.Token`\s, but it doesn't have to return a
91 :class:`~jinja2.lexer.TokenStream`.
93 In the `ext` folder of the Jinja2 source distribution there is a file
120 :meth:`attr` + :class:`jinja2.nodes.Call`.
157 """This extension adds gettext support to Jinja2."""
391 """Adds a `do` tag to Jinja2 that works like the print statement just
463 >>> from jinja2 import Environment