-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (70 loc) · 2.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Drafts 5 Javascript Editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta
name="description"
content="Write Drafts 5 Jacascript code in style. Includes autocomplete and nice formatting."
/>
<meta name="robots" content="index, follow" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Drafts 5 Javascript Editor" />
<meta
property="og:description"
content="Write Drafts 5 Jacascript code in style. Includes autocomplete and nice formatting."
/>
<!-- <meta property="og:image" content="LINK TO THE IMAGE FILE" /> -->
<meta property="og:url" content="https://davidbrownman/drafts" />
<meta property="og:site_name" content="Drafts 5 Javascript Editor" />
<meta name="twitter:title" content="Drafts 5 Javascript Editor" />
<meta
name="twitter:description"
content="Write Drafts 5 Jacascript code in style. Includes autocomplete and nice formatting."
/>
<!-- <meta name="twitter:image" content="LINK TO IMAGE" /> -->
<meta name="twitter:creator" content="@xavdid" />
<link rel="stylesheet" href="the.css" />
</head>
<body>
<div class="main">
<div class="title">
<h1>Drafts 5 Javascript Editor</h1>
</div>
<div class="controls">
<a href="#" class="btn" id="copy">Copy</a>
|
<a href="#" class="btn" id="pretty">Prettier</a>
<div id="copied-text">
Copied!
</div>
</div>
<div class="editor-wrapper">
<div id="editor"></div>
</div>
<div class="footer">
Made by
<a href="https://davidbrownman.com" target="_blank" rel="noopener">
David Brownman</a
>. Source is
<a
href="https://github.com/xavdid/drafts"
target="_blank"
rel="noopener"
>open</a
>. Not affiliated with
<a href="https://getdrafts.com/" target="_blank" rel="noopener"
>Drafts</a
>, I just like the app.
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.min.js"
integrity="sha256-0SGl1PJNDyJwcV5T+weg2zpEMrh7xvlwO4oXgvZCeZk="
crossorigin="anonymous"
></script>
<script src="final.js"></script>
</body>
</html>