-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (71 loc) · 2.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Beta‘s HOME</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css"/>
<!-- Theme: Simple -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
</head>
<style>
:root {
--base-background-color: #fff;
--base-color : var(--mono-shade2);
--base-font-family : "阿里巴巴普惠体", "Noto Sans CS Light", Arial, sans-serif;
--code-font-family : "Source Code Pro 常规体", Inconsolata, Consolas, Menlo;
--base-font-size : 16px;
--base-font-weight : normal;
--strong-color : DarkOliveGreen;
--blockquote-border-color : ;
--blockquote-border-style : ;
--code-inline-background : var(--mono-tint2);
--code-inline-border-radius : var(--border-radius-s);
--code-inline-color : brown;
}
.markdown-section {
max-width: 96% !important;
}
</style>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Home',
repo: '',
loadSidebar: true,
readyTransition : true, // default
responsiveTables: true, // default
relativePath: false, // 启用相对路径:false
plantuml: {
skin: 'classic',
},
count:{
countable:true,
fontsize:'0.6em',
color:'rgb(90,90,90)',
language:'chinese'
},
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
paths: ['language.md','datascience.md'],
placeholder: '搜索...',
noData: '未找到结果,换个搜索词试试?',
namespace: 'web',
}
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-prism@latest/dist/docsify-prism.min.js"></script>
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
<script src="//unpkg.com/docsify-plantuml/dist/docsify-plantuml.min.js"></script>
<script src="//unpkg.com/docsify-themeable/dist/js/docsify-themeable.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pangu/lib/pangu.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-r.min.js"></script>
</body>
</html>