-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<title>Markdown To HTML</title>
</head>
<body>
<h2 class="text-center">Markdown To HTML</h2>
<div class="is-center mb-1">
<a id="preview-btn" class="button secondary" >Preview</a>
<a id="html-btn" class="button secondary" >HTML</a>
<a id="download-btn" class="button secondary">Download</a>
</div>
<div class="row is-center is-marginless">
<div class="col-6">
<div id="editor-container" class="monaco-container"></div>
</div>
<div class="col-6">
<div id="preview-container" class="monaco-container overflow-auto" ></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.41.0/min/vs/loader.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>