-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 983 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
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Block editor demo</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="actions">
<button id="import-button">Import Markdown</button>
<button id="export-button">Export Markdown</button>
<button id="reset-button">Reset editor</button>
</div>
<div id="editorjs"></div>
<dialog id="import-dialog">
<form method="dialog">
<label for="import-textarea">Markdown to import</label>
<textarea id="import-textarea"></textarea>
<button>Import</button>
</form>
</dialog>
<dialog id="export-dialog">
<form method="dialog">
<label for="export-textarea">Markdown from editor</label>
<textarea id="export-textarea" readonly></textarea>
<button>Close</button>
</form>
</dialog>
<script type="module" src="/main.js"></script>
</body>
</html>