-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 2.01 KB
/
Copy pathindex.html
File metadata and controls
62 lines (62 loc) · 2.01 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Claude Code 源码解析</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="基于 Anthropic Claude Code 泄露源码的深度技术分析">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<style>
:root {
--theme-color: #d97706;
}
.sidebar-nav li a {
font-size: 14px;
}
.markdown-section {
max-width: 900px;
}
.markdown-section table {
display: table;
width: 100%;
}
.app-name-link {
font-size: 18px !important;
font-weight: bold;
}
.app-name-link img {
vertical-align: middle;
margin-right: 8px;
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: '<img src="favicon.ico" width="24" height="24" alt="Claude"> Claude Code 源码解析',
nameLink: '/',
repo: 'https://github.com/anneheartrecord/claude-code-docs',
loadSidebar: true,
subMaxLevel: 2,
search: {
placeholder: '搜索文档...',
noData: '没有找到结果',
depth: 3,
},
auto2top: true,
coverpage: false,
relativePath: false,
homepage: '_home.md',
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
</body>
</html>