Skip to content

Commit a9c66f8

Browse files
Features list : Omit listing deprecated Features (devcontainers#120)
1 parent 0eae45d commit a9c66f8

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ DEPENDENCIES
225225
tzinfo-data
226226

227227
RUBY VERSION
228-
ruby 2.7.6p219
228+
ruby 2.7.7p221
229229

230230
BUNDLED WITH
231-
2.3.24
231+
2.3.26

features.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ <h1 style="margin-left: auto;margin-right: auto;">Available Dev Container Featur
2525

2626
{% for c in site.data.devcontainer-index.collections %}
2727
{% for f in c.features %}
28-
<tr>
29-
<td class="tg-0lax"><a rel="nofollow" href="{{ f.documentationURL | strip_html }}">{{ f.name | strip_html }}</a></td>
30-
<td class="tg-0lax">{{ c.sourceInformation.maintainer | strip_html }}</td>
31-
<td class="tg-0lax"><code>{{ f.id | strip_html }}:{{ f.majorVersion | strip_html }}</code></td>
32-
<td class="tg-0lax"><code>{{ f.version | strip_html }}</code></td>
33-
</tr>
28+
{% if f.deprecated != true %}
29+
<tr>
30+
<td class="tg-0lax"><a rel="nofollow" href="{{ f.documentationURL | strip_html }}">{{ f.name | strip_html }}</a></td>
31+
<td class="tg-0lax">{{ c.sourceInformation.maintainer | strip_html }}</td>
32+
<td class="tg-0lax"><code>{{ f.id | strip_html }}:{{ f.majorVersion | strip_html }}</code></td>
33+
<td class="tg-0lax"><code>{{ f.version | strip_html }}</code></td>
34+
</tr>
35+
{% endif %}
3436
{% endfor %}
3537

3638
{% endfor %}

0 commit comments

Comments
 (0)