有选择地关闭 XML 文件的 Eclipse 格式设置

发布于 2024-11-25 23:04:53 字数 218 浏览 0 评论 0原文

有一种方法可以有选择地关闭 Eclipse 格式化(Java 代码)(请参阅 此处)。

是否有与 XML 文件格式等效的方法?

There is a way to turn off Eclipse formatting(of Java code) selectively (see here).

Is there a equivalent for formatting of XML files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

翻身的咸鱼 2024-12-02 23:04:53

在 Eclispe 上,我在 pom.xml 中使用此解决方案

<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
    <version>1.5.3</version>
    <executions>
        <execution>
            <phase>compile</phase>
            <goals>
                <goal>replace</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
    <basedir>${basedir}</basedir>
    <unescape>true</unescape>
    <includes>
        <include>src/test/resources/steps/scenarios/xxxxxx.feature</include>
    </includes>
    <token><![CDATA[Then home page is displayed[\\s\\S]*Then go to PRODUCTION]]></token>
    <value><![CDATA[Then home page is displayed\n\n    ##patch for IC\n    Then I change CP\n    ##end patch for IC\n\n    Then go to PRODUCTION]]></value>
    </configuration>
</plugin>

<token><![CDATA[..... Your line ....]]></token>

On Eclispe, I use this solution in a pom.xml

<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
    <version>1.5.3</version>
    <executions>
        <execution>
            <phase>compile</phase>
            <goals>
                <goal>replace</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
    <basedir>${basedir}</basedir>
    <unescape>true</unescape>
    <includes>
        <include>src/test/resources/steps/scenarios/xxxxxx.feature</include>
    </includes>
    <token><![CDATA[Then home page is displayed[\\s\\S]*Then go to PRODUCTION]]></token>
    <value><![CDATA[Then home page is displayed\n\n    ##patch for IC\n    Then I change CP\n    ##end patch for IC\n\n    Then go to PRODUCTION]]></value>
    </configuration>
</plugin>
享受孤独 2024-12-02 23:04:53

不可以。您唯一能做的就是选择“在带有 PCDATA 内容的标签中保留空白”

No. The only thing you can do is to select "Preserve whitespace in tags with PCDATA Content"

伴梦长久 2024-12-02 23:04:53

我不确定如何设置,但如果您想要某种预定义的一致性,您可以使用 XML 文件的“设计”选项卡(用“XML 编辑器”打开)来添加/编辑标签。

I am not sure how to set this up but if you are after some sort of predefined consistency you could use the Design tab of the XML file, opened with the XML Editor to add/edit tags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文