| OLD | NEW |
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 """ | 2 """ |
| 3 jinja2 | 3 jinja2 |
| 4 ~~~~~~ | 4 ~~~~~~ |
| 5 | 5 |
| 6 Jinja2 is a template engine written in pure Python. It provides a | 6 Jinja2 is a template engine written in pure Python. It provides a |
| 7 Django inspired non-XML syntax but supports inline expressions and | 7 Django inspired non-XML syntax but supports inline expressions and |
| 8 an optional sandboxed environment. | 8 an optional sandboxed environment. |
| 9 | 9 |
| 10 Nutshell | 10 Nutshell |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'Environment', 'Template', 'BaseLoader', 'FileSystemLoader', | 60 'Environment', 'Template', 'BaseLoader', 'FileSystemLoader', |
| 61 'PackageLoader', 'DictLoader', 'FunctionLoader', 'PrefixLoader', | 61 'PackageLoader', 'DictLoader', 'FunctionLoader', 'PrefixLoader', |
| 62 'ChoiceLoader', 'BytecodeCache', 'FileSystemBytecodeCache', | 62 'ChoiceLoader', 'BytecodeCache', 'FileSystemBytecodeCache', |
| 63 'MemcachedBytecodeCache', 'Undefined', 'DebugUndefined', | 63 'MemcachedBytecodeCache', 'Undefined', 'DebugUndefined', |
| 64 'StrictUndefined', 'TemplateError', 'UndefinedError', 'TemplateNotFound', | 64 'StrictUndefined', 'TemplateError', 'UndefinedError', 'TemplateNotFound', |
| 65 'TemplatesNotFound', 'TemplateSyntaxError', 'TemplateAssertionError', | 65 'TemplatesNotFound', 'TemplateSyntaxError', 'TemplateAssertionError', |
| 66 'ModuleLoader', 'environmentfilter', 'contextfilter', 'Markup', 'escape', | 66 'ModuleLoader', 'environmentfilter', 'contextfilter', 'Markup', 'escape', |
| 67 'environmentfunction', 'contextfunction', 'clear_caches', 'is_undefined', | 67 'environmentfunction', 'contextfunction', 'clear_caches', 'is_undefined', |
| 68 'evalcontextfilter', 'evalcontextfunction' | 68 'evalcontextfilter', 'evalcontextfunction' |
| 69 ] | 69 ] |
| OLD | NEW |