-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (40 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>localstorage-markdown-editor - The Markdown editor for your local browser</title>
<meta name="description" content="Create, edit and preview Markdown documents online. Using HTML5 web storage, your data stays 100% locally in your browser - no signup or installation required." />
<link rel="stylesheet" type="text/css" href="localstorage-markdown-editor.css">
</head>
<body>
<div id="box">
<!-- Raw Markdown input -->
<textarea id="raw-input">
## Welcome to localstorage-markdown-editor!
**localstorage-markdown-editor is the Markdown editor for your local browser.**
No signup or installation required. Using the new HTML5 web storage and [Strapdown.js](http://strapdownjs.com/), everything stays inside your local browser - 100% privacy for your data!
#### Features
* Edit and live preview inside the browser (offline Markdown parsing, no data will be transfered to any server!)
* Uses HTML5 local storage (avoids going crazy when accidently closing the browser window!)
* Download as Markdown and HTML
* Synchronization for multiple windows
#### Contributing
* Fork me on GitHub
* Make some mind-blowing feature changes
* Send me a pull request
#### License
MIT
</textarea>
<!--/Raw Markdown input -->
</div>
<!-- Parsed Markdown area -->
<xmp theme="cerulean" style="display: none;"></xmp>
<!--/Parsed Markdown area -->
<!-- GitHub badge -->
<a href="https://github.com/ConcurrentHashMap/localstorage-markdown-editor" class="visible-desktop"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 1000; margin: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<!--/GitHub bagde -->
<script src="strapdown.js"></script>
<script src="jquery.min.js"></script>
<script src="bootstrap-dropdown.js"></script>
<script src="localstorage-markdown-editor.js"></script>
</body>
</html>