Skip to content

Using a "with" statement does not close the tag properly #170

@Kangaroux

Description

@Kangaroux

Example:

- with some_context
  ...
- with some_other_context
  ...

Gets compiled to:

{% with some_context %}
  ...
{% with some_other_context %}
  ...
{% endwith %}
{% endwith %}

Should be:

{% with some_context %}
  ...
{% endwith %}
{% with some_other_context %}
  ...
{% endwith %}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions