From fb4316f1f4fcce2264bb5f6a09de58aeb78834ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20G=C5=82owala?= Date: Thu, 19 Sep 2024 18:42:14 +0200 Subject: [PATCH] fix: use `https` proto for author's github link (#225) --- src/markdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.ts b/src/markdown.ts index af5fd760..6fd3c890 100644 --- a/src/markdown.ts +++ b/src/markdown.ts @@ -96,7 +96,7 @@ export async function generateMarkDown( ); const email = _email ? `<${_email}>` : ""; const github = i.github - ? `([@${i.github}](http://github.com/${i.github}))` + ? `([@${i.github}](https://github.com/${i.github}))` : ""; return `- ${i.name} ${github || email}`; })