HamlPy icon indicating copy to clipboard operation
HamlPy copied to clipboard

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

Open Kangaroux opened this issue 8 years ago • 2 comments

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 %}

Kangaroux avatar Nov 13 '16 17:11 Kangaroux

Hi @Kangaroux. If you can create this issue on https://github.com/nyaruka/django-hamlpy we'll try to get it fixed

rowanseymour avatar Dec 05 '16 11:12 rowanseymour

Nevermind I see you already did

rowanseymour avatar Dec 05 '16 15:12 rowanseymour