From f0caad6f4886195850095fbf30efe3e03d94e903 Mon Sep 17 00:00:00 2001
From: lowlighter <22963968+lowlighter@users.noreply.github.com>
Date: Fri, 16 Apr 2021 12:09:19 +0200
Subject: [PATCH] Update compatibility.md
---
.../partials/documentation/compatibility.md | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/.github/readme/partials/documentation/compatibility.md b/.github/readme/partials/documentation/compatibility.md
index 506d1efc..348bfdcc 100644
--- a/.github/readme/partials/documentation/compatibility.md
+++ b/.github/readme/partials/documentation/compatibility.md
@@ -1,8 +1,8 @@
-### 🧰 Template/plugin compatibily matrix
+### 🧰 Plugin compatibility matrix
- | Template\Plugin | <%# -%>
+ Template/Plugin | <%# -%>
<% for (const [plugin, {name, icon}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) { %>
<%= icon %> | <% } %>
<%# -%>
@@ -13,3 +13,17 @@
<%= readme.compatibility[plugin] ? "✔️" : "❌" %> | <% } %>
<% } %>
+
+
+
+ | Mode/Plugin | <%# -%>
+ <% for (const [plugin, {name, icon}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) { %>
+ <%= icon %> | <% } %>
+
<%# -%>
+ <% for (const mode of ["user", "organization", "repository"]) { %>
+
+ | <%- `${mode.charAt(0).toLocaleUpperCase()}${mode.substring(1)}` %> | <%# -%>
+ <% for (const [plugin, {supports}] of Object.entries(plugins).filter(([key, value]) => (value)&&(!["core"].includes(key)))) {%>
+ <%= supports.includes(mode) ? "✔️" : "❌" %> | <% } %>
+
<% } %>
+