move a few things away in to-be-integrated/
[myslice.git] / third-party / codemirror-3.15 / addon / mode / multiplex_test.js
diff --git a/third-party/codemirror-3.15/addon/mode/multiplex_test.js b/third-party/codemirror-3.15/addon/mode/multiplex_test.js
deleted file mode 100644 (file)
index c065635..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-(function() {
-  CodeMirror.defineMode("markdown_with_stex", function(){
-    var inner = CodeMirror.getMode({}, "stex");
-    var outer = CodeMirror.getMode({}, "markdown");
-
-    var innerOptions = {
-      open: '$',
-      close: '$',
-      mode: inner,
-      delimStyle: 'delim',
-      innerStyle: 'inner'
-    };
-
-    return CodeMirror.multiplexingMode(outer, innerOptions);
-  });
-
-  var mode = CodeMirror.getMode({}, "markdown_with_stex");
-
-  function MT(name) {
-    test.mode(
-      name,
-      mode,
-      Array.prototype.slice.call(arguments, 1),
-      'multiplexing');
-  }
-
-  MT(
-    "stexInsideMarkdown",
-    "[strong **Equation:**] [delim $][inner&tag \\pi][delim $]");
-})();