forked from Tencent/cherry-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
150 lines (127 loc) · 2.97 KB
/
table.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表格所见即所得编辑</title>
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
#markdown {
margin-top: 5%;
width: 70%;
margin-left: auto;
margin-right: auto;
}
</style>
<link rel="stylesheet" type="text/css" href="../dist/cherry-markdown.css">
<link rel="Shortcut Icon" href="./logo/favicon.ico">
<link rel="Shortcut Icon" href="../logo/favicon.ico">
<link rel="Bookmark" href="../logo/favicon.ico">
</head>
<body>
<div id="dom_mask" style="position: absolute; top: 40px; height: 20px; width: 100%;"></div>
<div id="markdown"></div>
<script>
markdownSample = `## 预览区域表格编辑
![wysiwyg#80%](images/feature_table_wysiwyg.gif)
- dd
- ddd
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33332
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33333
- dd
- ddd
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33334
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33335
- dd
- ddd
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33336
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33337
- dd
- ddd
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33338
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
## 33339
- dd
- ddd
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
## 333310
|项目(居中对齐)|价格(右对齐)|数量(左对齐)|
|:-:|-:|:-|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
|计算机|¥1600|5|
|手机机|¥12|50|
`;
</script>
<script src="../dist/cherry-markdown.js"></script>
<script>
var cherry = new Cherry({
id: 'markdown',
toolbars: {
toolbar: ['bold', 'italic', 'strikethrough', '|', 'header', 'list', 'graph']
},
editor: {
height: '70%'
},
value: markdownSample,
});
</script>
</body>
</html>