我正在使用 ACE Editor 在我的网页上显示 xml 内容。我想在编辑器中格式化 xml 代码。
谁能告诉我该怎么做?
XML Code formatting is not specified in Ace itself, as it's just an editor. Use any of the answers in this question to prettify the code.
var code = ace.getSession().getValue();
// prettify
ace.getSession().setValue(code);
包中包含多种模式,github 上的 Wiki将告诉您如何实现它。像这样的东西:
var Mode = require('ace/mode/xml').Mode;
editor.getSession().setMode(new Mode());