如何在Ace Editor中格式化XML代码?

Roh*_*mar 3 javascript ace-editor

我正在使用ACE Editor在我的网页上显示xml内容.我想在Editor中格式化xml代码.

可以任何人告诉我该怎么做?

Jan*_*oom 14

Ace本身没有指定XML代码格式,因为它只是一个编辑器.使用此问题中的任何答案来美化代码.

var code = ace.getSession().getValue();
// prettify
ace.getSession().setValue(code);
Run Code Online (Sandbox Code Playgroud)