vote up 3 vote down star
4

I just pasted some generated javadoc into an eclipse project, to discover none of the HTML is compliant.

There is even cases of closing tags that were never opened.

Is there some way to fix this? Maybe a "be compliant" option...

flag

2 Answers

vote up 6 vote down check

After some googling, I discovered XHTML Doclet 0.4.

XHTML Doclet is a standards-compliant alternative to the Javadoc standard HTML doclet. The project revises the document structure to exclude outdated tags and inline styles, creates valid XHTML markup, and provides better hooks for more flexible CSS manipulation.

Looks like someone made a plugin.

Any better options?

Edit: Here's the plugin's Official page as linked to by Sun's Javadoc FAQ.

link|flag
That doclet made much nicer xhtml, but it uses the Transitional doctype, and puts <script> tags in the <body>, so there's a whole bunch of warnings. – Dean Nov 9 '08 at 9:35
vote up 2 vote down

The short answer is that JavaDocs predate XHTML.

There was an interesting thread on the Java Posse group about this recently that you might find interesting: why is javadoc stuck in 1997?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.