Adjust whitespace in expression delimiters (#1610)

Consistent whitespace makes the constructs easier to recognize.
This commit is contained in:
Jochen Kupperschmidt 2021-09-04 08:11:56 +02:00 committed by GitHub
parent 7af662c862
commit 4c4fad2cfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,12 @@ Here is an example of using that field to render a two-level table of contents:
<ul>
{% for h1 in page.toc %}
<li>
<a href="{{h1.permalink | safe}}">{{ h1.title }}</a>
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
{% if h1.children %}
<ul>
{% for h2 in h1.children %}
<li>
<a href="{{h2.permalink | safe}}">{{ h2.title }}</a>
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
</li>
{% endfor %}
</ul>