prettier-plugin-askama-temp.../test/cases/statement_if_else/input.html
2022-12-06 18:18:15 +01:00

9 lines
No EOL
200 B
HTML

<body>
{% if href in ['layout.html', 'index.html, 'about.html', 'user.html'] %}
<h1>{{title}}</h1>
{%elif href == "random.html" %}
<h2>{{title}}</h2>
{%else%}
<h3>{{title}}</h3>
{% endif %}
</body>