有没有办法在 TextWrangler 中格式化代码?

发布于 2024-12-07 06:58:17 字数 61 浏览 4 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

还在原地等你 2024-12-14 06:58:17

是的,有一种可能性,但并不简单。使用文本过滤器,如果您可以找到您选择的过滤器,请将其放入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 from Text/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/

梦萦几度 2024-12-14 06:58:17

创建一个新文件-> 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.

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