-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rendering of invalid template doesn't fail #373
Comments
Similar problem with |
Hi, I'm writing here, in this issue, because I've got the same problem. With Jinjava:
(No error detected) With Jinja:
(No error detected) With Jinja:
I'm using
And my code is:
I wish it would be useful. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you try to render following expression:
{{ invalidTemplate }
, then jinjava will successfully render it as text{{ invalidTemplate }
, while it should fail as this template is invalid because of the missing}
at the end.Please note that python jinja complains about following template (which is a correct behavior)
The text was updated successfully, but these errors were encountered: