Skip to content

Commit

Permalink
fix: use https proto for author's github link (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianGlowala authored Sep 19, 2024
1 parent c3796c4 commit fb4316f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
})
Expand Down

0 comments on commit fb4316f

Please sign in to comment.