Skip to content
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

Fix True/False/None value rendering (Python jinja2 parity) #266

Open
tjsmith-meta opened this issue Sep 26, 2024 · 0 comments
Open

Fix True/False/None value rendering (Python jinja2 parity) #266

tjsmith-meta opened this issue Sep 26, 2024 · 0 comments

Comments

@tjsmith-meta
Copy link

Python jinja2 renders True/False/None values capitalized, whereas jinja2cpp renders True/False lowercased, and None renders as empty string.

Here's a template that demonstrates.

{% set foo = True %}
{% set bar = False %}
{% set baz = None %}
{{ foo }}
{{ bar }}
{{ baz }}

Python jinja2 output

True
False
None

jinja2cpp output

true
false

See this attachment for a quick pass at a fix. Not particularly confident that I haven't introduced a bug with this fix or incompletely fixed the problem, but figured I would share the quick pass I took at it.
jinja2cpp-literal-render-fix.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant