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 d5fcad8 commit 9c0cd44Copy full SHA for 9c0cd44
src/lib/converter/factories/comment.ts
@@ -164,7 +164,7 @@ export function parseComment(text: string, comment: Comment = new Comment()): Co
164
line = line.replace(/^\s*\*? ?/, '');
165
line = line.replace(/\s*$/, '');
166
167
- const tag = /^@(\w+)/.exec(line);
+ const tag = /^@(\S+)/.exec(line);
168
if (tag) {
169
readTagLine(line, tag);
170
} else {
0 commit comments