Skip to content

Commit e965435

Browse files
remove extra space in person lists (#560)
1 parent 9da7f98 commit e965435

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

sswg/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ The current Swift Server workgroup consists of the following people:
1616
{% assign people = site.data.server-workgroup.members | sort: "name" %}
1717
<ul>
1818
{% for person in people %}
19-
<li> {{ person.name }}
20-
{% if person.affiliation %}
19+
<li>{{ person.name }}
20+
{%- if person.affiliation -%}
2121
, {{ person.affiliation }}
2222
{% endif %}
2323
{% if person.github %}
@@ -32,8 +32,8 @@ We are grateful for the service of the following emeritus workgroup members:
3232
{% assign people = site.data.server-workgroup.emeriti | sort: "name" %}
3333
<ul>
3434
{% for person in people %}
35-
<li> {{ person.name }}
36-
{% if person.affiliation %}
35+
<li>{{ person.name }}
36+
{%- if person.affiliation -%}
3737
, {{ person.affiliation }}
3838
{% endif %}
3939
{% if person.github %}

website-workgroup/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ The current website workgroup consists of the following people:
1919
{% assign people = site.data.website-workgroup.members | sort: "name" %}
2020
<ul>
2121
{% for person in people %}
22-
<li> {{ person.name }}
23-
{% if person.affiliation %}
22+
<li>{{ person.name }}
23+
{%- if person.affiliation -%}
2424
, {{ person.affiliation }}
2525
{% endif %}
2626
{% if person.github %}
@@ -35,8 +35,8 @@ We are grateful for the service of the following emeritus workgroup members:
3535
{% assign people = site.data.website-workgroup.emeriti | sort: "name" %}
3636
<ul>
3737
{% for person in people %}
38-
<li> {{ person.name }}
39-
{% if person.affiliation %}
38+
<li>{{ person.name }}
39+
{%- if person.affiliation -%}
4040
, {{ person.affiliation }}
4141
{% endif %}
4242
{% if person.github %}

0 commit comments

Comments
 (0)