rtts / djhtml

Django/Jinja template indenter
GNU General Public License v3.0
571 stars 32 forks source link

Fix: Slippers tag without children mistaken for opening tag #102

Closed jnns closed 4 months ago

jnns commented 1 year ago

Slippers template tags can be used with and without children:

{% photo src='file.png' %}

vs.

{% #photo %}
  <img src="file.png">
{% /photo %}

In case both versions are used alongside, {% photo %} will be wrongly classified as an opening tag because {% /photo %} follows later in the file.