generated from MichaelCurrin/docsify-js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (46 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- TODO: Update. -->
<title>Docsify Themeable Quickstart</title>
<!-- TODO: Update. -->
<meta name="description"
content="Documentation for the DocsifyJS Themeable Quickstart project for making your own DocsifyJS docs site">
<!-- TODO: Replace the theme name or leave as is. -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<!-- Plugins that are needed before app configuration. -->
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
</head>
<body>
<div id="app"></div>
<script>
var repo = 'https://github.com/MichaelCurrin/docsify-themeable-quickstart'; // TODO: Update.
window.$docsify = {
name: 'Docsify Themeable Quickstart', // TODO: Update.
repo: repo,
auto2top: true,
coverpage: true,
loadSidebar: false,
subMaxLevel: 2,
plugins: [
EditOnGithubPlugin.create(
repo + '/blob/master/docs/',
null,
'📝 Edit on GitHub',
)
],
}
</script>
<!-- Docsify core -->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- Docsify Themeable -->
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Syntax highlighting -->
<!-- TODO Add prism-bash, prism-python, prism-javascript etc. as separate items to load highlighting for that language -->
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-markdown.min.js"></script>
</body>
</html>