-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
58 lines (48 loc) · 2.03 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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="content-language" content="en">
<meta http-equiv="content-script-type" content="text/javascript">
<meta http-equiv="content-style-type" content="text/css">
<meta name="description" content="This is the online markdown editor with live preview.">
<link rel="stylesheet" type="text/css" href="css/style.css?v=1.10.1">
<link rel="icon" type="image/png" href="favicon.png">
<script type="module" src="/src/main.js?v=1.10.1"></script>
<title>Markdown Live Preview</title>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-77C1GEG9C8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-77C1GEG9C8');
</script>
<body>
<header>
<div id="menu-items">
<div><a href="/">Markdown Live Preview</a></div>
<div id="reset-button"><a href="#">Reset</a></div>
<div id="copy-button"><a href="#">Copy</a></div>
<div id="print-button"><a href="#">Print/PDF</a></div>
<div id="sync-button"><input type="checkbox" id="sync-scroll-checkbox"><label for="sync-scroll-checkbox">Sync scroll</label></div>
</div>
<div id="github"><a href="https://github.com/tanabe/markdown-live-preview"><img src="image/GitHub-Mark-Light-32px.webp"></a></div>
</header>
<div id="container" class="split-container">
<div id="edit" class="column editor-pane">
<div id="editor-wrapper">
<div id="editor"></div>
</div>
</div>
<div id="split-divider" class="split-divider"></div>
<div id="preview" class="column preview-pane">
<div id="preview-wrapper">
<div id="output" class="content markdown-body"></div>
</div>
</div>
</div>
<footer></footer>
</body>
</html>