使用 E4X,我可以关闭缩进吗?

发布于 2024-10-11 01:58:19 字数 422 浏览 6 评论 0原文

如果我有类似的东西:

var x = <div><span>hello</span><span>world</span></div>

并将其添加到其他表达式中,它会呈现为:

<div>
  <span>hello</span>
  <span>world</span>
</div>

但在 HTML 中, 之间的空格代码> 很重要。

有没有办法关闭 E4X 的自动缩进功能?

我正在使用 Rhino JS,但显然标准机制是首选。

If I've got something like:

var x = <div><span>hello</span><span>world</span></div>

and add it to some other expression, it gets rendered as:

<div>
  <span>hello</span>
  <span>world</span>
</div>

But in HTML, the whitespace between </span> and <span> is significant.

Is there a way to turn off the auto-indentation that E4X does?

I'm using Rhino JS, but obviously a standard mechanism would be preferred.

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

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

发布评论

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

评论(1

黯淡〆 2024-10-18 01:58:19

是的,只需设置 XML.prettyIndent = 0 即可。如果您想完全关闭漂亮打印,只需设置 XML.prettyPrinting = false 即可。您可以在 MDC E4X 教程上了解更多开关。

Yes, just set XML.prettyIndent = 0. If you want to turn off pretty printing entirely, just set XML.prettyPrinting = false. You can read about more switches on the MDC E4X tutorial.

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