Files
metrics/.github/readme/partials/templated/plugins.md
2022-08-14 12:04:03 -04:00

1.3 KiB

🧩 Plugins

Plugins provide additional content and lets you customize rendered metrics.

📦 Maintained by core team <% { let previous = null; for (const [plugin, {name, category, deprecation, authors = []}] of Object.entries(plugins).filter(([key, value]) => (value)&&(value.category !== "community")).sort(([an, a], [bn, b]) => a.category === b.category ? an.localeCompare(bn) : 0)) { %> <% if (previous !== category) { previous = category -%>

  • <%= ${category === "github" ? "GitHub" : ${category.charAt(0).toLocaleUpperCase()}${category.substring(1)}} plugins %> <% } -%>
    • [<%- name %> <%= plugin %>](/source/plugins/<%= plugin %>/README.md)<%# -%><% if (deprecation) { %> ⚠️ deprecated<% } %><%# -%> <% }} %>

🎲 Maintained by community

  • Community plugins <% { let previous = null; for (const [plugin, {name, category, authors = []}] of Object.entries(plugins).filter(([key, value]) => (value)&&(value.category === "community")).sort(([an, a], [bn, b]) => a.category === b.category ? an.localeCompare(bn) : 0)) { %><%# -%>
    • [<%- name %> <%= plugin %>](/source/plugins/community/<%= plugin %>/README.md) by <%- authors.map(author => [@${author}](https://github.com/${author})).join(" ") %> <% }} %>