Closed
Description
Currently, since typedoc uses getJSDocCommentRanges
for retrieving comments, line comments and block comments that don't start with /**
are not recognized:
class X {
/**
* works
*/
x() {
}
/*
* doesn't work
*/
x2() {
}
// doesn't work
x3() {
}
}
It should be fairly easy to remove this limitation by copying getJSDocCommentRanges without the filtering at the end.