blob: 7248850ef22a8418744543bd92ddd478f110a2fb (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>org-live</title>
<link rel="stylesheet" href="./static/styles.min.css" >
</head>
<body>
<form autocomplete>
<div>
<label for="editor">org-live</label>
<span class="spacer"></span>
<button type="button" onclick="saveHTML();">Save HTML</button>
<button type="button" onclick="saveOrg();">Save Org</button>
</div>
<textarea
id="editor"
name="editor"
autocapitalize="on"
autocorrect="on"
spellcheck="on"
placeholder="* Lorem Ipsum"
cols="80"
wrap="hard"
autofocus
required
></textarea>
</form>
<div id="preview"></div>
<script src="./static/org.js"></script>
<script src="./static/app.js"></script>
</body>
</html>
|