@@ -31,92 +31,35 @@ Members of the workgroup serve at the discretion of the Swift Core Team and the
3131
3232The current members of the workgroup are:
3333
34- <table >
35- <thead >
36- <tr>
37- <th>Member</th>
38- <th>Swift forums</th>
39- <th>GitHub</th>
40- </tr>
41- </thead >
42- <tbody >
43- <tr>
44- <td>Alex Hoppen</td>
45- <td><a href="https://forums.swift.org/u/ahoppen">@ahoppen</a></td>
46- <td><a href="https://github.com/ahoppen">@ahoppen</a></td>
47- </tr>
48- <tr>
49- <td>Anthony Latsis</td>
50- <td><a href="https://forums.swift.org/u/anthonylatsis">@anthonylatsis</a></td>
51- <td><a href="https://github.com/AnthonyLatsis">@AnthonyLatsis</a></td>
52- </tr>
53- <tr>
54- <td>Devanshi Modha (Diversity in Swift champion)</td>
55- <td><a href="https://forums.swift.org/u/devanshimodha">@devanshimodha</a></td>
56- <td><a href="https://github.com/devanshimodha">@devanshimodha</a></td>
57- </tr>
58- <tr>
59- <td>Egor Zhdan</td>
60- <td><a href="https://forums.swift.org/u/egor.zhdan">@egor.zhdan</a></td>
61- <td><a href="https://github.com/egorzhdan">@egorzhdan</a></td>
62- </tr>
63- <tr>
64- <td>Harshita Pathipati</td>
65- <td><a href="https://forums.swift.org/u/hpathipati">@hpathipati</a></td>
66- <td><a href="https://github.com/harshitapath">@harshitapath</a></td>
67- </tr>
68- <tr>
69- <td>Holly Borla</td>
70- <td><a href="https://forums.swift.org/u/hborla">@hborla</a></td>
71- <td><a href="https://github.com/hborla">@hborla</a></td>
72- </tr>
73- <tr>
74- <td>James Dempsey</td>
75- <td><a href="https://forums.swift.org/u/James_Dempsey">@James_Dempsey</a></td>
76- <td><a href="https://github.com/dempseyatgithub">@dempseyatgithub</a></td>
77- </tr>
78- <tr>
79- <td>Joseph Heck</td>
80- <td><a href="https://forums.swift.org/u/Joseph_Heck">@Joseph_Heck</a></td>
81- <td><a href="https://github.com/heckj">@heckj</a></td>
82- </tr>
83- <tr>
84- <td>Luciano Almeida</td>
85- <td><a href="https://forums.swift.org/u/LucianoPAlmeida">@LucianoPAlmeida</a></td>
86- <td><a href="https://github.com/LucianoPAlmeida">@LucianoPAlmeida</a></td>
87- </tr>
88- <tr>
89- <td>Mishal Shah</td>
90- <td><a href="https://forums.swift.org/u/mishal_shah">@mishal_shah</a></td>
91- <td><a href="https://github.com/shahmishal">@shahmishal</a></td>
92- </tr>
93- <tr>
94- <td>Paris Pittman</td>
95- <td><a href="https://forums.swift.org/u/parispittman">@parispittman</a></td>
96- <td><a href="https://github.com/parispittman">@parispittman</a></td>
97- </tr>
98- <tr>
99- <td>Pavel Yaskevich (chair)</td>
100- <td><a href="https://forums.swift.org/u/xedin">@xedin</a></td>
101- <td><a href="https://github.com/xedin">@xedin</a></td>
102- </tr>
103- <tr>
104- <td>Suyash Srijan</td>
105- <td><a href="https://forums.swift.org/u/suyashsrijan">@suyashsrijan</a></td>
106- <td><a href="https://github.com/theblixguy">@theblixguy</a></td>
107- </tr>
108- <tr>
109- <td>Timirah James</td>
110- <td><a href="https://forums.swift.org/u/timirahj">@timirahj</a></td>
111- <td><a href="https://github.com/timirahj">@timirahj</a></td>
112- </tr>
113- </tbody >
114- </table >
34+ {% assign people = site.data[ 'contributer-experience-workgroup'] .members | sort: "name" %}
35+ <ul >
36+ {% for person in people %}
37+ <li >{{ person.name }}
38+ {%- if person.affiliation -%}
39+ , {{ person.affiliation }}
40+ {% endif %}
41+ {% if person.github %}
42+ (<a href =" https://github.com/{{person.github}} " >@{{person.github}}</a >)
43+ {% endif %}
44+ </li >
45+ {% endfor %}
46+ </ul >
11547
11648We are grateful for the service of the following emeritus workgroup member:
11749
118- * [ Max Desiatov] ( https://github.com/MaxDesiatov )
119-
50+ {% assign people = site.data[ 'contributer-experience-workgroup'] .emeriti | sort: "name" %}
51+ <ul >
52+ {% for person in people %}
53+ <li >{{ person.name }}
54+ {%- if person.affiliation -%}
55+ , {{ person.affiliation }}
56+ {% endif %}
57+ {% if person.github %}
58+ (<a href =" https://github.com/{{person.github}} " >@{{person.github}}</a >)
59+ {% endif %}
60+ </li >
61+ {% endfor %}
62+ </ul >
12063
12164## Communication
12265
0 commit comments