moved libraries and images out of src folder

This commit is contained in:
zadam
2019-03-30 09:39:58 +01:00
parent 7bbf797caf
commit a5fc8d5329
349 changed files with 7 additions and 5 deletions

11
libraries/codemirror/mode/d/test.js vendored Normal file
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](){}");
})();