문제

Is there a way to avoid having to do this?

{{-''-}}  <h2>{{- title -}}</h2>
{{-''-}}  <div class="blah">
{{-''-}}    {{- blah -}}
{{-''-}}    <div class="ha">
{{-''-}}       {{- text -}}
{{-''-}}    </div>
{{-''-}}  </div>
도움이 되었습니까?

해결책

From comments:

There's a Jinja2 extension called HTMLCompress. Its Github page.

Follow the instructions to install it and then wrap parts of markup you want to compress in {% strip %} block:

{% strip %}
<div>
    Whitespace will be removed
</div>
{% endstrip %}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top