-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.59 KB
/
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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<script src="marked.min.js"></script>
<script src="purify.min.js"></script>
<meta charset="utf-8" />
<title>MD > HTML</title>
<link
rel="stylesheet"
data-name="vs/editor/editor.main"
href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0-dev.20230519/min/vs/editor/editor.main.min.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrapper">
<div class="editor">
<div class="editor__code">
<div
id="editorCode"
style="min-height: 770px; border: 1px solid black"
></div>
</div>
<div class="editor__preview">
<iframe id="editorPreview" class="markdown-body" frameborder="0"></iframe>
</div>
</div>
<div class="buttons">
<button class="button" id="editorCopyClipboard">Copy HTML</button>
<button class="button" id="downloadFile">Create file</button>
</div>
</div>
</body>
<script>
var require = {
paths: {
vs: "https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0-dev.20230519/min/vs",
},
};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0-dev.20230519/min/vs/loader.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0-dev.20230519/min/vs/editor/editor.main.nls.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0-dev.20230519/min/vs/editor/editor.main.js"></script>
<script src="editor.js"></script>
</html>