Why does Javadoc generate non-compliant XHTML?

后端 未结 2 1103
情书的邮戳
情书的邮戳 2021-02-10 00:52

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.

2条回答
  •  眼角桃花
    2021-02-10 01:32

    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.

提交回复
热议问题