Skip to content

Commit

Permalink
fix(app): rawDescription for JSDoc and visitEnumTypeAliasFunctionDecl…
Browse files Browse the repository at this point in the history
…arationDescription
  • Loading branch information
vogloblinsky committed Jul 14, 2021
1 parent 0bb000d commit a888f25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/compiler/angular-dependencies.ts
Expand Up @@ -1260,7 +1260,8 @@ export class AngularDependencies extends FrameworkDependencies {
if (node.jsDoc) {
if (node.jsDoc.length > 0) {
if (typeof node.jsDoc[0].comment !== 'undefined') {
description = marked(node.jsDoc[0].comment);
const rawDescription = this.jsdocParserUtil.parseJSDocNode(node);
description = marked(rawDescription);
}
}
}
Expand Down

0 comments on commit a888f25

Please sign in to comment.