editor.autoFormatRange(range.from,range.to);
来自CodeMirror Group的这个片段可能就是您所需要的:
function autoFormat() { var totallines = editor.lineCount(); var totalChars = editor.getTextArea().value.length; editor.autoFormatRange({line:0,ch:0},{line:totallines,ch:totalChars});}
http://codemirror.net/2/demo/formatting.html
总结以上是内存溢出为你收集整理的codemirror – 当值设置为代码镜像时,如何格式化代码镜像中的HTML代码?全部内容,希望文章能够帮你解决codemirror – 当值设置为代码镜像时,如何格式化代码镜像中的HTML代码?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)