Support Jinja2-style elif in conditionals#339
Open
mrowrpurr wants to merge 2 commits into
Open
Conversation
inja already supports chained `else if`, but that syntax is rejected by
Jinja2. Rendering an `else if` template through Jinja2 raises:
jinja2.exceptions.TemplateSyntaxError: expected token 'end of statement block', got 'if'
Jinja2 only accepts `elif`. To improve Jinja2 compatibility, this adds
`elif` as a synonym for `else if`. Both spellings are supported and can be
mixed within the same conditional chain, so existing templates are
unaffected.
The new `elif` branch in the parser mirrors the existing chained `else if`
handling: it marks the false-statement block, creates a nested
IfStatementNode, and parses the condition. Tests cover basic `elif`,
`elif` chains, `elif` followed by `else`, mixed `else if`/`elif` chains,
and the `elif without matching if` error. README and the regenerated
single-header amalgamation are updated to match.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
inja supports chained
else if, but Jinja2 rejects that syntax:Jinja2 only accepts
elif. This addselifas a synonym forelse if, improving Jinja2 compatibility.elifparser branch mirrors the existing chainedelse ifhandlingelif, chains,elif→else, mixedelse if/elif, and theelif without matching iferror