-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tiny Electron</title>
<!--
<meta charset="utf-8">
-->
<meta charset="UTF-8">
<!-- Manifest and icons -->
<link rel="manifest" href="./manifest.json">
<link rel="icon" type="image/png" href="./images/favicon.png">
<meta name="theme-color" content="#FFFFFF">
<!---->
</head>
<body>
<div id="textEditor" class="tinymce-full"></div>
<!--
<a id="aDownloadFile" style="display: none;" download></a>
<input type="file" id="filePicker" style="display: none;">
-->
<script src="libs/tinymce/tinymce.min.js" referrerpolicy="origin"></script> <!-- TinyMCE -->
<link href="css/editor-styles.css" type="text/css" rel="stylesheet">
<script src="markdown-gfm.js"></script> <!-- micromark, kramorcim -->
<script src="sbil/prism.js" data-manual></script> <!-- Prism -->
<!--
<link rel="stylesheet" type="text/css" href="sbil/prism.css">
-->
<!-- Prism CSS -->
<script src="frontMatter.js" inline></script>
<script src='index.js'></script>
</body>
</html>