如何在 Eclipse 中格式化 html 文件?
XML 格式工作得很好,但 html 格式却不行。事实上,如果我对 html 文件使用“cmd-shift-F”,它几乎会左对齐所有内容。我附上了之前和之后的照片。
有谁知道如何解决这个问题?我尝试了 HTML 格式首选项,但没有成功。请注意,同一个文档,如果保存为 xml,格式会完美。
我正在使用带有 WTP 插件的 eclipse 3.6。
The XML formatting works perfect but not the html formatting. In fact if I use "cmd-shift-F" for a html file, it just left aligns almost everything. I've attached the before and after pictures.
Does anyone know how to fix this? I played around with HTML formatting preferences but had no luck. Note that the same document, if it is saved as xml will format perfectly.
I am using eclipse 3.6 with WTP plugin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
转到
窗口 -->偏好 -->网页 --> HTML 文件 -->编辑器
。在“内联元素”部分中,选择您不希望 Eclipse 内联的所有元素(继续使用同一行)。
单击应用,然后单击确定。
现在使用 ctrl + shift + f 重新格式化。
go to
Window --> preferences --> Web --> HTML files --> Editor
.In the Inline Elements section, select all the elements that you don't want eclipse to inline(continue with same line).
Click Apply and then Ok.
Now re format using
ctrl + shift + f
.转到窗口 -->偏好 -->网页 --> HTML 文件 -->编辑。
确保“缩进大小”未设置为零。
这就是为我做的。
go to Window --> preferences --> Web --> HTML files --> Editor.
Make sure "Indentation Size" is not set to zero.
That's what did it for me.
http://eclipsetidy.sourceforge.net/
您也可以指定格式首选项:http://eclipsetidy.sourceforge.net/?act=preferences
http://eclipsetidy.sourceforge.net/
You can specify your formatting preferences too: http://eclipsetidy.sourceforge.net/?act=preferences
Eclipse Juno 版本似乎做得不错。它不处理标签(即自行关闭的 div 标签)。不知道为什么有人会使用它,但我们有一个项目,其中散布着它们,可能来自某人正在使用的某些 WYSISYG 编辑器。
Eclipse Juno release seems to do a good job. It doesn't handle tags (that is the div tag that closes itself). Not sure why anyone would use it but we have a project that has them sprinkled about, probably from some WYSISYG editor someone was using.
CTRL+SHIFT+F 工作正常。
只需单击要格式化的源代码,然后按 CTRL+SHIFT+F。
CTRL+SHIFT+F works fine.
Just click on the source codes you want to format and then press CTRL+SHIFT+F.