From 6f95ba478497e059fff2b7fe853e72e74cd429c4 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 20:46:22 +0000 Subject: [PATCH] chore: apply automated updates --- src/render.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render.ts b/src/render.ts index b104d76..00dc4a9 100644 --- a/src/render.ts +++ b/src/render.ts @@ -48,7 +48,7 @@ export function link( opts?: { title?: string; external?: boolean }, ): string { if (opts?.external) { - return `${text}`; + return `${text}`; } return `[${text || url}](${url || "#"}${opts?.title ? ` "${opts.title}"` : ""})`;