-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathindex.html
61 lines (59 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PHP协程扩展开发</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">
<!-- Theme: Simple Dark -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<!-- Custom theme stylesheet -->
<link rel="stylesheet" href="theme-custom.css">
</head>
<body>
<div id="app"></div>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-php.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-c.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-cpp.min.js"></script>
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script src="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
window.$docsify = {
name: 'PHP协程扩展开发',
repo: 'php-extension-research/study',
loadSidebar: true,
// sidebar折叠
auto2top: true,
autoHeader: false,
subMaxLevel: 4,
search: {
depth: 6,
noData: {
'/': '没有找到结果!',
'/协程基础模块/': '没有找到结果!',
'/网络模块/': '没有找到结果!',
'/优化(一)/': '没有找到结果!',
'/CSP并发模型/': '没有找到结果!',
'/优化(二)/': '没有找到结果!',
'/Hook/': '没有找到结果!',
},
paths: 'auto',
placeholder: {
'/': '输入关键词搜索',
'/协程基础模块/': '输入关键词搜索',
'/网络模块/': '输入关键词搜索',
'/优化(一)/': '输入关键词搜索',
'/CSP并发模型/': '输入关键词搜索',
'/优化(二)/': '输入关键词搜索',
'/Hook/': '输入关键词搜索',
}
},
}
</script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
</body>
</html>