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()" : ""} | `,
"
",
" ",
` | ${
|