Is it possible not to fall back on the children of the {% block %}django tag when converting the code?
I would like to have reformed code:
{% block name %}
<div>
<p>Some text.</p>
</div>
{% endblock name %}
<Not p> No:{% block name %}
<div>
<p>Some text.</p>
</div>
{% endblock name %}
source
share