vert-x3 / vertx-rx

Reactive Extensions for Vert.x
Apache License 2.0
147 stars 72 forks source link

Generate `<p>`, not `<p/>`, in javadoc, self-closing element not allowed #297

Closed julianladisch closed 12 months ago

julianladisch commented 12 months ago

Since JDK 8 javadoc requires strict HTML 4. A self-closing <p/> is no longer allowed and javadoc fails with

error: self-closing element not allowed

For details see https://stackoverflow.com/q/26049329

Replacing <p/> with <p> fixes the error.