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.
@internal
@hidden
1 parent 695d996 commit 149f3bdCopy full SHA for 149f3bd
src/lib/converter/plugins/CommentPlugin.ts
@@ -110,7 +110,10 @@ export class CommentPlugin extends ConverterComponent {
110
CommentPlugin.removeTags(comment, 'event');
111
}
112
113
- if (comment.hasTag('hidden') || comment.hasTag('ignore')) {
+ if (comment.hasTag('hidden')
114
+ || comment.hasTag('ignore')
115
+ || (comment.hasTag('internal') && this.application.options.getCompilerOptions().stripInternal)
116
+ ) {
117
if (!this.hidden) {
118
this.hidden = [];
119
0 commit comments