-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.52 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Python3 | RamblerW</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="shortcut icon" href="./resources/logo.png">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="./resources/css/my.css">
</head>
<body>
<div id="app">Loading ...</div>
<script>
window.$docsify = {
name: '',
repo: 'https://github.com/ramblerw/python3',
maxLevel: 2,
loadSidebar: true,
subMaxLevel: 4,
auto2top: true,
homepage: 'README.md',
// 直接渲染其他域名的文档
basePath: 'https://ramblerw.github.io/python3/',
search: {
paths: 'https://ramblerw.github.io/python3/',
placeholder: '查找……',
noData: '查无结果!',
// 搜索标题的最大程级, 1 - 6
depth: 6
}
}
</script>
<script src="//unpkg.com/docsify"></script>
<script src="https://cdn.bootcss.com/docsify/4.6.10/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
</body>
</html>