如何防止IntelliJ的JavaDoc格式化删除我的缩进

时间:2017-11-22 23:07:09

标签: java intellij-idea javadoc

这是我写的javadoc评论:

  /**
   * This utility allows the user to do the following.
   * <ul>
   *   <li>A cool feature</li>
   *   <li>Another cool feature</li>
   * </ul>
   */
  public static void main(String[] args) {

这是相同的评论,由intelliJ

重新格式化
  /**
   * This utility allows the user to do the following.
   * <ul>
   * <li>A cool feature</li>
   * <li>Another cool feature</li>
   * </ul>
   */
  public static void main(String[] args) {

如何防止autoformat功能破坏我的意图?

为了防止IntelliJ删除我的换行符,我选中了一个框:

  

设置&gt;编辑&gt;代码风格&gt; Java&gt; JavaDoc&gt; Preseve Line Feeds

我希望有一个&#34; Preseve领先的空白&#34;盒子在同一个地方,但没有。

0 个答案:

没有答案