Files
openide/java/java-impl/resources/inspectionDescriptions/JavadocHtmlLint.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

23 lines
654 B
HTML

<html>
<body>
Reports the same HTML issues in the Javadoc comments that have been reported by DocLint since Java 8.
<p>The inspection detects the following issues:</p>
<ul>
<li>Self-closed, unclosed, unknown, misplaced, or empty tag</li>
<li>Unknown or wrong attribute</li>
<li>Misplaced text</li>
</ul>
<p>Example:</p>
<pre><code>
/**
* Unknown tag: List&lt;String&gt;
* Unclosed tag: error&lt;/b&gt;
* Misplaced text or tag: &lt;ul&gt;&lt;li&gt;one&lt;/li&gt;, &lt;li&gt;two&lt;/li&gt;&lt;/ul&gt;
* Wrong or empty attribute: &lt;a href=""&gt;&lt;/a&gt;
* Self-closed tag: &lt;br/&gt;
* ...
*/
void sample(){ }
</code></pre>
</body>
</html>