I was typing some Javadoc into IntelliJ this morning and used a <br> tag, which IntelliJ autocompleted to <br>|</br> in its usual helpful way... but I'm under the impression that <br> is defined not to be a container:
http://www.washington.edu/accessit/webdesign/student/unit2/common_tags.htm says:
A few tags are called non-container tags, because they don't contain any content - they stand alone. Examples are images and line breaks. XHTML requires that all open tags must be closed, even if they're not container tags. Therefore, non-container tags end in />. For example, the tag for a line break is <br />.
So is Javadoc HTML or XHTML? It seems to me IntelliJ should be completing <br> to <br /> or leaving it alone.