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

11 lines
210 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>