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 d1699b8 commit b20544bCopy full SHA for b20544b
src/parser.ts
@@ -135,7 +135,7 @@ export class Parser {
135
// Use start and end delimiters to find block comments
136
let regexString = "(^|[ \\t])(";
137
regexString += this.blockCommentStart;
138
- regexString += "[\\s]?)([\\s\\S]*?)(";
+ regexString += "[^*][\\s]?)([\\s\\S]*?)(";
139
regexString += this.blockCommentEnd;
140
regexString += ")";
141
0 commit comments