我当前正在实现ACE作为几种编程语言的编辑器。我真的想实现美化功能,目前我使用这种方法:
var beautify = ace.require("ace/ext/beautify"); // get reference to extension
var editor = ace.edit("editor"); // get reference to editor
beautify.beautify(editor.session);
更多信息
可悲的是,这不能正确格式化CSS。示例:
.class1 .subClass { color: red; }
通过所述代码美化了此更改为
.class1.subClass{
color:red;
}
您可以看到选择器中的所有空间被删除,并改变了规则的目标。
我的代码错误吗?ACE中的CSS是否有其他美化机?
作为后备,我将删除不是理想解决方案的功能。
tl; dr
是否有可以正确美化CSS的ACE插件/扩展名?难道我做错了什么?
好吧,我发现了一个不错的CSS美化器,我添加了我的解决方案。
这是魔术:
container.querySelector('.editor_beautify').addEventListener('click', function () {
var currentMode = editor.session.$modeId.substr(editor.session.$modeId.lastIndexOf('/') + 1);
switch (currentMode) {
case modes.css:
util.formatCss(editor, configuration.scriptBase);
break;
default:
util.ensureScript(configuration.scriptBase + 'ext-beautify.js', function () {
var beautify = ace.require("ace/ext/beautify").beautify(editor.session);
});
}
});
formatCss: function (editorAce, scriptBase) {
var unformatted = editorAce.getValue();
if (unformatted.trim().length > 0) {
util.ensureScript(scriptBase + 'cssbeautify.js', function () {
editorAce.getSession().setUseWrapMode(false);
var formatted = cssbeautify(unformatted, {
indent: ' ',
openbrace: 'end-of-line',
autosemicolon: true
});
editorAce.setValue(formatted);
editorAce.getSession().setUseWrapMode(true);
});
}
}