On Thu, 1 May 2025 19:36:51 GMT, Michael Strauß <mstra...@openjdk.org> wrote:
>> what's a "tidy" and is it a part of our build/validation? > > The closing `</li>` tag is not required in HTML, and Javadoc doesn't seem to > object. Is this a requirement of another tool? We're using `<li>` without a > closing tag in many places in JavaFX. OK. I (mistakenly) thought that this was required. To answer Andy's question, [tidy](https://www.html-tidy.org/) is a tool to validate HTML5 for various formatting problems which can cause problems with some browsers. The JDK team used to periodically run it on their javadoc, but I don't think it is run continuously. Jon Gibbons filed [JDK-8184220](https://bugs.openjdk.org/browse/JDK-8184220) several years ago to "tidy" up our docs, which we did. This did not flag any missing `</li>` tags. So: no change needed. ------------- PR Review Comment: https://git.openjdk.org/jfx/pull/1596#discussion_r2070723910