Skip to content

Commit dd9e336

Browse files
committed
TODO-ify the missing Jinja tags / functions override support
1 parent fda5741 commit dd9e336

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

docs/reference/known-issues.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ There is experimental support, excluding overrides of arbitrary tags, functions,
7070

7171
### Jinja2 support
7272

73-
🎉 This is now addressed as of v1.4.0, though with only experimental support, and no capability to override tags, functions, filters (see above).
73+
🎉 This is now addressed as of v1.5.0, though with only experimental support, and no capability to override tags, functions, filters (see above).
7474

7575
### No way to specify objects that have attributes and support iteration
7676

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% include 'non-patterns/include.html' %}
22
{% include variable_include %}
33

4-
{{ error_tag() }}
4+
{# TODO: Unsupported override with Jinja #}
5+
{# {{ error_tag() }} #}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
context:
2-
variable_include: non-patterns/variable_include.html
2+
variable_include: non-patterns/variable_include.html
33

4+
# TODO: Unsupported override with Jinja
45
tags:
56
error_tag:
67
include:
7-
template_name: 'non-patterns/include.html'
8+
template_name: "non-patterns/include.html"

0 commit comments

Comments
 (0)