-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcode1.html
More file actions
42 lines (34 loc) · 1.67 KB
/
Copy pathcode1.html
File metadata and controls
42 lines (34 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="codemirror-5.31.0/lib/codemirror.css" rel="external nofollow" >
<link rel="stylesheet" href="codemirror-5.31.0/addon/fold/foldgutter.css" rel="external nofollow" >
<link rel="stylesheet" href="codemirror-5.31.0/addon/hint/show-hint.css" rel="external nofollow" >
<link rel="stylesheet" href="codemirror-5.31.0/addon/lint/lint.css" rel="external nofollow" >
</head>
<body>
<form action="">
<textarea id="editor" class="editor"></textarea>
</form>
<button id="test">click</button>
</body>
</html>
<script src="codemirror-5.31.0/lib/codemirror.js"></script>
<script src="codemirror-5.31.0/addon/comment/comment.js"></script>
<script src="codemirror-5.31.0/addon/selection/active-line.js"></script>
<script src="codemirror-5.31.0/keymap/sublime.js"></script>
<script src="codemirror-5.31.0/addon/hint/show-hint.js"></script>
<script src="codemirror-5.31.0/mode/python/python.js"></script>
<script src="codemirror-5.31.0/addon/fold/foldcode.js"></script>
<script src="codemirror-5.31.0/addon/fold/foldgutter.js"></script>
<script src="codemirror-5.31.0/addon/fold/brace-fold.js"></script>
<script src="codemirror-5.31.0/addon/fold/indent-fold.js"></script>
<script src="codemirror-5.31.0/addon/fold/comment-fold.js"></script>
<script src="codemirror-5.31.0/addon/edit/closebrackets.js"></script>
<script src="codemirror-5.31.0/addon/edit/matchbrackets.js"></script>
<script src="axios.js"></script>
<script src="index.js"></script>