<p/> 标签

问题描述 投票:0回答:2

如果我在 Android Studio 和其他 Jetbrains 产品中重新格式化代码,某些地方会创建一个小标签。

我怎样才能防止这种情况发生?

enter image description here

intellij-idea android-studio phpstorm javadoc
2个回答
34
投票

<p/>
标记在空行上生成,以便它们显示在 javadocs 中。

如果您愿意,可以在重新格式化代码时将其关闭。

在 Android Studio 中,转到文件 -> 设置 -> 代码样式 -> Java -> JavaDoc 选项卡 -> 取消选中

Generate "<p/>" on empty lines

Where to turn off generation of the p tag

以下是带有和不带有段落标签的文档的外观,右侧是快速文档窗口中的文本。

Example of the docs with and without p tag.

考虑到这一点。


0
投票

即使禁用 JavaDoc 格式,IntelliJ IDEA 仍会在行上显示警告“空白行应替换为

<p>
”。

要禁用警告,请参阅 Settings -> Editor -> Inspections -> 滚动到 Java -> JavaDoc -> 取消选中 空白行应替换为

<p>
以换行

Screenshot of settings tab in IntelliJ IDEA 2024.2

© www.soinside.com 2019 - 2024. All rights reserved.