admin(major): add YAMLField for attributes, add codemirror editor

This commit is contained in:
Langhammer, Jens
2019-10-12 14:23:03 +02:00
parent 50172e58d8
commit 1fe420fd80
419 changed files with 75081 additions and 1 deletions

View File

@ -0,0 +1,11 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE
(function() {
var mode = CodeMirror.getMode({indentUnit: 2}, "d");
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
MT("nested_comments",
"[comment /+]","[comment comment]","[comment +/]","[variable void] [variable main](){}");
})();