Skip to content

Recognize more comment styles #963

Closed
Closed
@adrianheine

Description

@adrianheine

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    wontfixDeclining to implement

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions