CodeMirror 2 インスタンスに 2 つ以上のモードを含めることはできますか?
例えば
var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
value: "Hello World",
mode: "css", "html", "javascript"
});
CodeMirror 2 インスタンスに 2 つ以上のモードを含めることはできますか?
例えば
var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
value: "Hello World",
mode: "css", "html", "javascript"
});