Skip to content

Commit f0caad6

Browse files
committed
Update compatibility.md
1 parent 31c399c commit f0caad6

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/readme/partials/documentation/compatibility.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
### 🧰 Template/plugin compatibily matrix
1+
### 🧰 Plugin compatibility matrix
22

33
<table>
44
<tr>
5-
<th nowrap="nowrap">Template\Plugin</th><%# -%>
5+
<th nowrap="nowrap">Template/Plugin</th><%# -%>
66
<% for (const [plugin, {name, icon}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) { %>
77
<th nowrap="nowrap" align="center" title="<%= name %>"><%= icon %></th><% } %>
88
</tr><%# -%>
@@ -13,3 +13,17 @@
1313
<th nowrap="nowrap" align="center" data-plugin="<%= plugin %>"><%= readme.compatibility[plugin] ? "✔️" : "❌" %></th><% } %>
1414
</tr><% } %>
1515
</table>
16+
17+
<table>
18+
<tr>
19+
<th nowrap="nowrap">Mode/Plugin</th><%# -%>
20+
<% for (const [plugin, {name, icon}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) { %>
21+
<th nowrap="nowrap" align="center" title="<%= name %>"><%= icon %></th><% } %>
22+
</tr><%# -%>
23+
<% for (const mode of ["user", "organization", "repository"]) { %>
24+
<tr>
25+
<th nowrap="nowrap"><%- `${mode.charAt(0).toLocaleUpperCase()}${mode.substring(1)}` %></th><%# -%>
26+
<% for (const [plugin, {supports}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) {%>
27+
<th nowrap="nowrap" align="center" data-plugin="<%= plugin %>"><%= supports.includes(mode) ? "✔️" : "❌" %></th><% } %>
28+
</tr><% } %>
29+
</table>

0 commit comments

Comments
 (0)