Inspectopedia Help

Link specified as plain text

Reports links specified as plain text in Javadoc comments.

The quick-fix suggests to wrap the link in <a> tag.

Example:

class Main { /** * https://en.wikipedia.org/ */ void foo() {} }

After the quick-fix is applied:

class Main { /** * <a href="https://en.wikipedia.org/">https://en.wikipedia.org/</a> */ void foo() {} }

New in 2022.1

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Java, 233.SNAPSHOT

Last modified: 13 July 2023