This repository was archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.56 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.56 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
<head>
<meta charset="utf-8"/>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,600" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Noto+Serif:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://docs.opendoc.sg/assets/styles/normalize.css">
<link rel="stylesheet" href="https://docs.opendoc.sg/assets/styles/main.css">
<link rel="stylesheet" href="./css/editormd.css" />
</head>
<body>
<input type="file" id="docupload" name="docupload" style="display:none" onchange="bundleone.detectUpload()" accept=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,.md">
<textarea id="base64" style="display:none;"></textarea>
<div id="editormd">
<textarea id="markdown" style="display:none;">**Upload your Word/ Markdown document and start editing!** Share your work with others by copying the editor URL!</textarea>
</div>
<script src="lib/jquery-3.3.1.min.js"></script>
<script src="lib/rawinflate.js"></script>
<script src="lib/rawdeflate.js"></script>
<script src="importbundle.js"></script>
<script src="exportbundle.js"></script>
<script src="editormd.js"></script>
<script src="languages/en.js"></script>
<script type="text/javascript">
$(function() {
window.editor = editormd("editormd", {
path : "./lib/" // Autoload modules mode, codemirror, marked... dependents libs path
});
});
</script>
</body>