prettier-plugin-askama-temp.../test/cases/statement_long/input.html

9 lines
191 B
HTML
Raw Normal View History

<ul>
{% for href, caption in [
('index.html', 'Index'),
('about.html', 'About'),
('downloads.html', 'Downloads')]
%}
<li><a href="{{ href }}">{{ caption }}</a></li>
{% endfor %}
</ul>