是否可以使用 Visual Studio HTML 格式来格式化嵌入的代码块?
我喜欢 Visual Studio 自动格式化的功能 (CTRL + K,D)。 但是,在 HTML 中,如果您有类似以下内容:
<h1><%# Eval("SomeField") %></h1>
它的格式如下:
<h1>
<%# Eval("SomeField") %></h1>
我相当确定
标记后的换行符是由 Visual Studio 嵌入代码块的格式设置规则引起的。 但是我不知道在哪里编辑这些设置。 所有其他规则都位于“工具”>“工具”下。 选项> 文本编辑器。
有人有什么想法吗?
非常感谢!
I love Visual Studio's ability to auto format (CTRL + K,D). However, in HTML if you have something like:
<h1><%# Eval("SomeField") %></h1>
It gets formatted this way:
<h1>
<%# Eval("SomeField") %></h1>
I'm fairly certain that the line break after the <h1>
tag is caused by Visual Studio's formatting rules for embedded code blocks. However I don't know where to edit those settings. All of the other rules are under Tools > Options > Text Editor.
Does anyone have any ideas?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
工具> 选项> 文本编辑器> html> 格式化
标签包装部分 -> 标签特定选项...
默认设置(有 4 个)- 将所有“换行符:”更改为“之前和之后”
Tools > Options > Text Editor > Html > Formatting
Tag wrapping section -> Tag Specific Options...
Default Settings (there are 4) - Change all the "Line breaks:" to "Before and after"
您很接近...
转到工具> 选项> 文本编辑器> html> 格式
在标记环绕部分中,单击“标记特定选项”
在树中的“客户端 HTML 标记” 节点下,您将看到 嵌入元素。
将其换行符设置为“打开前、关闭内和关闭后。”
You were close...
Go to Tools > Options > Text Editor > Html > Format
In the tag wrapping section, click on "Tag Specific Options"
In the tree, under the "Client HTML Tags" node you'll see the embed element.
Set its line breaks to "Before Opening,within, and after closing."
标签特定选项 -> 默认设置 -> 客户端标签不支持内容。
将换行符设置为标记后。
Tag Specific Options->Default Settings->Client tag does not support content.
Set the Line Breaks to after tag.