From 2073a71cbbd510f2e813390f5bc3edd0c2d56ea0 Mon Sep 17 00:00:00 2001
From: lowlighter <22963968+lowlighter@users.noreply.github.com>
Date: Wed, 19 Jan 2022 12:47:36 -0500
Subject: [PATCH] build: link to readme rather than folder
---
source/app/metrics/metadata.mjs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/source/app/metrics/metadata.mjs b/source/app/metrics/metadata.mjs
index 94042a8a..5b3db5c8 100644
--- a/source/app/metrics/metadata.mjs
+++ b/source/app/metrics/metadata.mjs
@@ -305,7 +305,7 @@ metadata.plugin = async function({__plugins, __templates, name, logger}) {
meta.authors?.length ? `
| Authors | ${[meta.authors].flat().map(author => `@${author}`)} |
` : "",
" ",
' Supported features → Full specification | ',
- ` ${Object.entries(compatibility).filter(([_, value]) => value).map(([id]) => `${templates[id].name ?? ""}`).join(" ")} | `,
+ ` ${Object.entries(compatibility).filter(([_, value]) => value).map(([id]) => `${templates[id].name ?? ""}`).join(" ")} | `,
"
",
" ",
` | ${
@@ -428,7 +428,7 @@ metadata.template = async function({__templates, name, plugins, logger}) {
` |
| ${marked.parse(meta.description ?? "", {silent:true})} |
`,
" ",
' Supported features → Full specification | ',
- ` ${Object.entries(compatibility).filter(([_, value]) => value).map(([id]) => `${plugins[id].icon}`).join(" ")}${meta.formats?.includes("markdown") ? " ✓ embed()" : ""} | `,
+ ` ${Object.entries(compatibility).filter(([_, value]) => value).map(([id]) => `${plugins[id].icon}`).join(" ")}${meta.formats?.includes("markdown") ? " ✓ embed()" : ""} | `,
"
",
" ",
` | ${
|