We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7cabfb commit 2b6af73Copy full SHA for 2b6af73
src/app/engines/html-engine-helpers/parse-description.helper.ts
@@ -98,7 +98,10 @@ export class ParseDescriptionHelper implements IHtmlEngineHelper {
98
label = split.linkText;
99
}
100
101
- if (resultInCompodoc.type === 'miscellaneous') {
+ if (
102
+ resultInCompodoc.type === 'miscellaneous' ||
103
+ resultInCompodoc.type === 'classes'
104
+ ) {
105
newLink = `<a href="${rootPath}${resultInCompodoc.type}/${pageName}.html${anchor}">${label}</a>`;
106
} else {
107
newLink = `<a href="${rootPath}${resultInCompodoc.type}s/${pageName}.html${anchor}">${label}</a>`;
0 commit comments