We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code like this resulting in error H025 for last div element
{% block content %} <div class="position-relative page-content"> {% if request.user %} <div hx-get="{% url 'feature-list' %}?{{ request.get_full_path|get_query_string }}" hx-trigger="load, refresh from:body" {# djlint:off #} hx-target-5*="#ajax-error" {# djlint:on #} hx-indicator="#loader" id="feature-list"></div> {% include "partials/common/loader.html" %} {% else %} Empty data {% endif %} </div> {% endblock content %}
If i don't disable djlint for attribute hx-target-5* it formats and brake behavior
<div hx-get="{% url 'feature-list' %}?{{ request.get_full_path|get_query_string }}" hx-trigger="load, refresh from:body" hx-target-5 None="#ajax-error" hx-indicator="#loader" id="feature-list"></div>
The root problem here is my weird attribute hx-target-5*, would be great if this can be supported.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
System Info
Issue
Code like this resulting in error H025 for last div element
If i don't disable djlint for attribute hx-target-5* it formats and brake behavior
The root problem here is my weird attribute hx-target-5*, would be great if this can be supported.
The text was updated successfully, but these errors were encountered: