Back to Intellij Community

MarkdownDocumentationCommentsMigration

java/java-impl/resources/inspectionDescriptions/MarkdownDocumentationCommentsMigration.html

2025.3-rc-2406 B
Original Source

Reports Javadoc comments that can be converted to Markdown documentation comments.

Example:

/**
   * For blubbering of the florz.
   *
   * Similar to {@link com.deeps.Querp querping} class.
   */
  class FlorzBlubber {
  }

After the quick-fix is applied:

/// For blubbering of the florz.
  /// Similar to [querping][com.deeps.Querp] class.
  class FlorzBlubber {
  }

New in 2024.2