3

我想要像http://jsbeautifier.org/这样可以在 NetBeans IDE 中工作的东西。我找到了一个可以缩小代码的插件,但没有找到任何可以取消缩小代码的插件。NetBeans“格式”命令也不能按我的意愿工作。

我有写在 1 行中的 CSS 代码,例如:

ul {margin:0;} ul li{margin:20px;}

我想将它排列成多行,例如:

ul{
    margin:0;
}
li{
    margin:20px;
}

提前感谢您的帮助。

4

1 回答 1

0

你可以使用这个插件http://plugins.netbeans.org/plugin/43263/jsbeautify ,这是jsbeautifier网站的插件灵感

于 2014-11-16T08:50:33.797 回答