forked from fex-team/dora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (26 loc) · 881 Bytes
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mdeditor</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<!-- ueditor -->
<script src="lib/ueditor/ueditor.config.js"></script>
<script src="lib/ueditor/ueditor.all.js"> </script>
<script src="lib/ueditor/lang/zh-cn/zh-cn.js"></script>
<!-- markdown.js -->
<script src="lib/markdown.js"></script>
<!-- demo -->
<link rel="stylesheet" href="style/index.css"/>
<script src="src/index.js"></script>
</head>
<body>
<div>
<h1>完整demo</h1>
<div class="main">
<div class="left"><script id="editor1" type="text/plain" style="width:400px;height:500px;"></script></div>
<div class="right"><script id="editor2" type="text/plain" style="width:400px;height:500px;"></script></div>
</div>
</div>
</body>
</html>