From 1d967a51d23b24571d7cee441315268fe3a25214 Mon Sep 17 00:00:00 2001 From: metal Date: Mon, 6 Sep 2021 14:17:51 +0000 Subject: [PATCH] add name to the usage signature --- backend/src/plugins/Tags/docs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/plugins/Tags/docs.ts b/backend/src/plugins/Tags/docs.ts index 0203e2f0..fd6ff2d5 100644 --- a/backend/src/plugins/Tags/docs.ts +++ b/backend/src/plugins/Tags/docs.ts @@ -7,7 +7,7 @@ export function generateTemplateMarkdown(definitions: TemplateFunction[]): strin const exampl = def.examples ? def.examples.map(ex => `> ${ex}`).join("\n") : ""; return ` #### ${def.name} - \`{${usage}}\` + \`{${def.name}${usage}}\` **${def.description}** ${exampl} `;