krz/org-live

clone: git clone https://gitbay.org/krz/org-live.git

main: index.html · raw

 1<!DOCTYPE html>
 2<html lang="en">
 3    <head>
 4        <meta charset="utf-8">
 5        <meta name="viewport" content="width=device-width, initial-scale=1">
 6        <title>org-live</title>
 7        <link rel="stylesheet" href="./static/styles.min.css" >
 8    </head>
 9    <body>
10        <form autocomplete>
11            <div>
12                <label for="editor">org-live</label>
13                <span class="spacer"></span>
14                <button type="button" onclick="saveHTML();">Save HTML</button>
15                <button type="button" onclick="saveOrg();">Save Org</button>
16            </div>
17            <textarea
18                id="editor"
19                name="editor"
20                autocapitalize="on"
21                autocorrect="on"
22                spellcheck="on"
23                placeholder="* Lorem Ipsum"
24                cols="80"
25                wrap="hard"
26                autofocus
27                required
28            ></textarea>
29        </form>
30	<div id="preview"></div>
31        <script src="./static/org.js"></script>
32        <script src="./static/app.js"></script>
33    </body>
34</html>