有没有办法在 TextWrangler 中格式化代码?
我在 Mac OS X 上使用 TextWrangler 进行一些 Web 开发。有没有办法自动格式化代码?
I'm using TextWrangler on Mac OS X to do some web development. Is there a way to auto format code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有一种可能性,但并不简单。使用文本过滤器,如果您可以找到您选择的过滤器,请将其放入
Library/Application Support/TextWrangler/Text Filters
中,并从Text/Apply Text Filter
菜单访问它。对于 XML,您可以这样做:
http://magp.ie/2010/02/15/format- xml-with-textwrangler/
对于 PHP:
http://wizguild.com/textwrangler_phptidy_filter/
Yes, there is a possibility but not a simple one. Using Text Filters, if you can find a filter your choice you put it into
Library/Application Support/TextWrangler/Text Filters
and reach it fromText/Apply Text Filter
menu.This is how you do it for XML:
http://magp.ie/2010/02/15/format-xml-with-textwrangler/
and for PHP:
http://wizguild.com/textwrangler_phptidy_filter/
创建一个新文件-> Tidy XML.sh
复制并粘贴以下行:
#!/bin/sh
XMLLINT_INDENT=$'\t' xmllint --format --encode utf-8 -
保存在桌面上
打开 Finder 并转到文件夹 -> ~/Library/Application Support/TextWrangler/Text Filter
将 Tidy XML.sh 从桌面移至文本过滤器。
打开 TextWrangler 并美化您的 xml 文件。
Create a new file -> Tidy XML.sh
Copy and Paste this lines below:
#!/bin/sh
XMLLINT_INDENT=$'\t' xmllint --format --encode utf-8 -
Save on Desktop
Open Finder and GO to folder -> ~/Library/Application Support/TextWrangler/Text Filters
Move your Tidy XML.sh from desktop to Text Filters.
Open TextWrangler and beautifier your xml file.