在 TextMate 中将 HTML 换行到 79 个字符?
我正在 TextMate 中使用 HTML 进行工作。
对于某些类型的内容,如果我选择 View >包裹> 79 个字符
,内容换行至 79 个字符。
但是,对于 HTML 这不起作用,而且我不知道如何使其换行。
有人可以建议吗?
谢谢!
I'm working in TextMate with HTML.
For some types of content, if I choose View > Wrap > 79 characters
, the content wraps at 79 characters.
However, for HTML this does not work, and I don't know how to make it wrap.
Can anyone advise?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一段时间没有使用 TextMate,我曾经使用“软换行”功能,该功能可以换行但不缩进 - 这就是我停止使用 TextMate 的原因。从这张公开票来看,截至 2011 年 3 月 3 日,情况似乎仍然如此 - http: //ticket.macromates.com/show?ticket_id=4EFB31A8
Having not used TextMate for a while I used to use the "Soft Wrap" feature which wraps but doesn't indent - which is why I stopped using TextMate. Judging by this open ticket, that still seems to be the case as of 03/03/2011 - http://ticket.macromates.com/show?ticket_id=4EFB31A8
TextMate 是一个编辑器,不会影响 HTML 页面的外观。当您在 TextMate 中设置换行选项时,您正在指定您希望 TextMate 如何为您查看的个人偏好。
要使 HTML 在 79 个字符处中断,您需要在页面中必要的字符数后添加
(如果是 xhtml)。TextMate is an editor and does not affect how your HTML page will look. When you are setting the wrap option in TextMate you are specifying a personal preference of how you want TextMate to view for you.
To make HTML break at 79 characters you need to add
<br />
(if xhtml) after the necessary number of characters in your page.