forked from devcontainers/devcontainers.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
features.html
43 lines (39 loc) · 1.66 KB
/
features.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
title: Features
layout: table
sectionid: collection-index-features
---
<h1 style="margin-left: auto;margin-right: auto;">Available Dev Container Features</h1>
<p style="margin-left: auto;margin-right: auto;">
This table contains all official and community-supported <a href="implementors/features/">Dev Container Features</a>
known at the time of crawling <a href="collections">each registered collection</a>. This list is continuously
updated with the latest available feature information. See the <a
href="https://github.com/devcontainers/feature-template">
Feature quick start repository</a> to add your own!
<br><br>
<a href="implementors/features#referencing-a-feature">Referencing a Feature</a> below can be done in the "features"
section of a devcontainer.json.
<br><br>
Please note that if you need to report a Feature, you should do so through the registry hosting the Feature.
</p>
<p>
</p>
<tr>
<td class="tg-0lax"><b>Feature Name</b></b></td>
<td class="tg-0lax"><b>Maintainer</b></td>
<td class="tg-0lax"><b>Reference</b></td>
<td class="tg-0lax"><b>Latest Version</b></td>
</tr>
{% for c in site.data.devcontainer-index.collections %}
{% for f in c.features %}
{% if f.deprecated != true %}
<tr>
<td class="tg-0lax"><a rel="nofollow" href="{{ f.documentationURL | strip_html }}">{{ f.name | strip_html }}</a>
</td>
<td class="tg-0lax">{{ c.sourceInformation.maintainer | strip_html }}</td>
<td class="tg-0lax"><code>{{ f.id | strip_html }}:{{ f.majorVersion | strip_html }}</code></td>
<td class="tg-0lax"><code>{{ f.version | strip_html }}</code></td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}