Skip to content

Commit

Permalink
Updated reference links
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei15193 committed Oct 23, 2024
1 parent c7a858f commit 23e3c56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class GenerateDocumentationPlugin {
if (declarationIndex > 0 && declarations[declarationIndex - 1].promoted !== declarations[declarationIndex].promoted)
listMarker = '-';

return `${listMarker} [${this._getSimpleName(declaration)}](${this._getIdentifier(declaration)})`;
return `${listMarker} [${this._getSimpleName(declaration)}](${this._getProjectReferenceUrl(declaration)})`;
})
.join('\n');
})
Expand All @@ -261,7 +261,7 @@ class GenerateDocumentationPlugin {
return `**${namespace.name}** \n` + namespace
.declarations
.filter(declaration => declaration.promoted)
.map(declaration => `[${this._getSimpleName(declaration)}](${this._getIdentifier(declaration)})`)
.map(declaration => `[${declaration.name}](${this._getProjectReferenceUrl(declaration)})`)
.join(' \n');
})
.join('\n\n')
Expand Down

0 comments on commit 23e3c56

Please sign in to comment.