mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
29 lines
550 B
HTML
29 lines
550 B
HTML
<html>
|
|
<body>
|
|
Reports plain text links in Javadoc comments.
|
|
<p>
|
|
The quick-fix suggests to wrap the link in an <code><a></code> tag.
|
|
</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class Main {
|
|
/**
|
|
* https://en.wikipedia.org/
|
|
*/
|
|
void foo() {}
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
class Main {
|
|
/**
|
|
* <a href="https://en.wikipedia.org/">https://en.wikipedia.org/</a>
|
|
*/
|
|
void foo() {}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2022.1</small></p>
|
|
</body>
|
|
</html>
|