我使用
django模板,为了可读性,我有html看起来类似于以下内容:
{% if some_variable %} text {% else %} nothing exists here {% endif %} {% for item in set %} {% if forloop.first %} ...etc...
它在运行时转换为以下html,其中包括大量的空格和返回值:
text <div> <li class='some_class > some text </li> </div> etc...
有些页面甚至在浏览页面源时也可以运行〜3000行的html.
在运行时是否有压缩此HTML的工具?如何删除额外换行符的工具呢?