move a few things away in to-be-integrated/
[myslice.git] / third-party / codemirror-3.15 / demo / variableheight.html
diff --git a/third-party/codemirror-3.15/demo/variableheight.html b/third-party/codemirror-3.15/demo/variableheight.html
deleted file mode 100644 (file)
index b00f7e4..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<!doctype html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <title>CodeMirror: Variable Height Demo</title>
-    <link rel="stylesheet" href="../lib/codemirror.css">
-    <script src="../lib/codemirror.js"></script>
-    <script src="../mode/markdown/markdown.js"></script>
-    <script src="../mode/xml/xml.js"></script>
-    <link rel="stylesheet" href="../doc/docs.css">
-
-    <style type="text/css">
-      .CodeMirror {border: 1px solid silver; border-width: 1px 2px; }
-      .cm-header { font-size: 150%; font-family: arial; }
-      .cm-strong { font-size: 140%; }
-    </style>
-  </head>
-  <body>
-    <h1>CodeMirror: Variable Height Demo</h1>
-
-    <form><textarea id="code" name="code"># A First Level Header
-
-**Bold** text in a normal-size paragraph.
-
-And a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long, wrapped line with a piece of **big** text inside of it.
-
-## A Second Level Header
-
-Now is the time for all good men to come to
-the aid of their country. This is just a
-regular paragraph.
-
-The quick brown fox jumped over the lazy
-dog's back.
-
-### Header 3
-
-> This is a blockquote.
-> 
-> This is the second paragraph in the blockquote.
->
-> ## This is an H2 in a blockquote       
-</textarea></form>
-    <script id="script">
-      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
-        lineNumbers: true,
-        lineWrapping: true,
-        mode: "markdown"
-      });
-    </script>
-  </body>
-</html>