如何在codemirror编辑器中禁用语法高亮显示的文本?

时间:2015-01-06 06:35:08

标签: css html5 text syntax-highlighting codemirror

我需要在codemirror编辑器中禁用语法高亮显示的文本,因为用户可能会编辑编辑器中的某些语法,这会导致程序无法运行。那么,如何禁止编辑语法内容?

例如:
enter image description here

在此,只有标签不应该是可编辑的其余内容应该是可编辑的。
怎么做?

非常感谢任何帮助。提前谢谢。

1 个答案:

答案 0 :(得分:1)

readOnly: boolean|string
This disables editing of the editor content by the user. If the special value "nocursor" is given (instead of simply true), focusing of the editor is also disallowed.

访问:http://codemirror.net/doc/manual.html了解文档