Skip to content

Commit

Permalink
fix: clean up markmap (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
lethang7794 authored Feb 21, 2025
1 parent bbf5336 commit 50f0b43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/cv-to-md.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ To update modify 'cv-to-md.ts' then run 'pnpm run gen-markmap'
if (resume.basics.website || cv || mindmap) {
md += `## **Also available as**\n\n`;
if (resume.basics.website) {
md += `- Website: [${resume.basics.website}](${resume.basics.website + "/?utm_medium=mindmap"})\n`;
md += `- Website: [${resume.basics.website}](${resume.basics.website})\n`;
}
if (cv) {
md += `- PDF: [${cv.url}](${cv.url + "/?utm_medium=mindmap"})\n`;
md += `- PDF: [${cv.url}](${cv.url})\n`;
}
if (mindmap) {
md += `- Mind map: [${mindmap.url}](${mindmap.url + "/?utm_medium=mindmap"}) (You're viewing this)\n`;
md += `- Mind map: [${mindmap.url}](${mindmap.url}) (You're viewing this)\n`;
}
md += `\n`;

Expand Down

0 comments on commit 50f0b43

Please sign in to comment.