forked from marktext/muya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Muya Development</title>
</head>
<body>
<div class="tools">
<button id="undo">UNDO</button>
<button id="redo">REDO</button>
<input id="search" type="text" placeholder="Search text...">
<button id="previous">Previous</button>
<button id="next">Next</button>
<input id="replace" type="text" placeholder="Replace text...">
<button id="single">Single</button>
<button id="all">All</button>
<button id="set-content">Set Content</button>
<button id="select-all">Select All</button>
</div>
<div class="editor-container">
<div id="editor"></div>
</div>
<script type="module" src="/examples/main.ts"></script>
</body>
</html>