Skip to content

Commit

Permalink
Fix author urls
Browse files Browse the repository at this point in the history
  • Loading branch information
marwie committed Jun 30, 2023
1 parent f13804e commit 453b4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/.vuepress/plugins/generate-shared-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const generateContributionPages = async (app, config) => {
indexContent += `<contribution-header
url="${entry.profileUrl}"
author="${author.toString()}"
page="${baseUrl}${baseContributionUrl}/${author}"
page="${baseUrl}${baseContributionUrl}/${cleanLink(author)}"
profileImage="${entry.profileImage}"
>\n`;

Expand All @@ -86,7 +86,7 @@ const generateContributionPages = async (app, config) => {
contributionPage += `<contribution-header
url="${entry.profileUrl}"
author="${author}"
page="${baseUrl}${baseContributionUrl}/${author}"
page="${baseUrl}${baseContributionUrl}/${cleanLink(author)}"
profileImage="${entry.profileImage}"
githubUrl="${cont.url}"
title="${cont.title}"
Expand Down

0 comments on commit 453b4a8

Please sign in to comment.