-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
74 lines (74 loc) · 2.25 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta charset="UTF-8" />
<title></title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css" />
<style>
.markdown-section h2 {
font-size: 1.75rem;
margin: 40px 0 0.8rem;
}
.markdown-section h3 {
font-size: 1.5rem;
margin: 35px 0 0.6rem;
}
.markdown-section {
max-width: 90%;
}
.markdown-section p {
margin: 0.8em 0;
}
.markdown-section code,
.markdown-section pre {
font-family: Consolas;
}
.markdown-section blockquote p {
font-weight: normal;
}
.content {
padding-top: 20px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "notes",
// repo: "", // connect to github
loadSidebar: true,
// maxLevel: 4,
subMaxLevel: 5,
auto2top: true,
// coverpage: true,
// themeColor: "#3c78eb",
// homepage: "start.md",
// search: {
// maxAge: 86400000,
// paths: "auto",
// placeholder: {
// "/": "搜索",
// "/en": "Type to search",
// },
// noData: {
// "/": "找不到结果",
// "/en": "No Results",
// },
// depth: 2,
// },
// mergeNavbar: true,
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/marked@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-c.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-cpp.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify@latest/lib/plugins/search.min.js"></script>
</body>
</html>