我发现我可以在 Eclipse 中向 Javadocs 添加一些 CSS 样式,为内联代码悬停创建一些不错的效果。
示例 javadoc:
/**
* <p>This is a general description of the class.<p>
*
* <p>Here is a useful direct quote:</p>
*
* <div style="background-color:white; border: 1px solid gray; margin: 1em 2.5em; padding: 0em 0.5em">
* <p>This quote has a list:</p>
* <ul>
* <li>Item 1</li>
* <li>Item 2</li>
* </ul>
* </div>
*
*/
public class SSCCE {
}
样本结果:
我想在我的代码中更多地利用这一点,但如果我可以使用类似的东西<div class="box">
而不是手动设置样式属性会更好,原因如下:
- 如果我以后决定调整样式,我可能需要更改数百个 Javadoc 注释
- 目前,我只关心 Eclipse 中的外观。但是,如果我曾经将 Javadocs 导出为 HTML,我可能希望 HTML 版本具有与 Eclipse 版本不同的样式。
是否可以在 Eclipse 中执行此操作,也许使用插件?