2018-12-18 21:02:11 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-12-19 15:11:15 +08:00
|
|
|
<title>CS-Notes</title>
|
2018-12-18 21:02:11 +08:00
|
|
|
<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">
|
2018-12-19 15:11:15 +08:00
|
|
|
<link rel="icon" href="_media/logomakr-3sxxzw-128x128.png">
|
2018-12-18 21:02:11 +08:00
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
|
|
<link rel="stylesheet" href="//unpkg.com/gitalk/dist/gitalk.css">
|
2018-12-19 10:07:44 +08:00
|
|
|
<link rel="stylesheet" href="_style/style.css">
|
2018-12-19 14:09:39 +08:00
|
|
|
<!--solarizedlight tomorrow coy-->
|
|
|
|
<link rel="stylesheet" href="_style/prism-master/themes/prism-coy.css">
|
2018-12-18 21:02:11 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-12-19 15:51:28 +08:00
|
|
|
<!-- <nav>
|
|
|
|
<a href="#/README">HOME</a>
|
|
|
|
</nav> -->
|
2018-12-18 21:02:11 +08:00
|
|
|
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
2018-12-19 14:46:17 +08:00
|
|
|
maxAge: 100,
|
2018-12-18 21:02:11 +08:00
|
|
|
name: 'CS-Notes',
|
2018-12-19 10:07:44 +08:00
|
|
|
repo: 'https://github.com/CyC2018/CS-Notes',
|
2018-12-19 11:22:35 +08:00
|
|
|
|
|
|
|
search: {
|
2018-12-19 14:46:17 +08:00
|
|
|
paths: 'auto',
|
2018-12-19 11:22:35 +08:00
|
|
|
placeholder: '🔍 Type to search ',
|
|
|
|
noData: '😞 No Results! ',
|
|
|
|
// Headline depth, 1 - 6
|
2018-12-19 14:46:17 +08:00
|
|
|
depth: 6
|
|
|
|
},
|
|
|
|
// subMaxLevel: 2,
|
|
|
|
coverpage: true
|
2018-12-19 12:09:18 +08:00
|
|
|
}
|
2018-12-18 21:02:11 +08:00
|
|
|
</script>
|
|
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
2018-12-19 14:57:17 +08:00
|
|
|
<!-- <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> -->
|
|
|
|
<!-- 上面的基本不可用,无法搜索 -->
|
|
|
|
<script src="https://cdn.bootcss.com/docsify/4.5.9/plugins/search.min.js"></script>
|
2018-12-18 23:29:31 +08:00
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/gitalk.min.js"></script>
|
|
|
|
<script src="//unpkg.com/gitalk/dist/gitalk.min.js"></script>
|
|
|
|
<script src="//unpkg.com/docsify-copy-code"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-java.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-c.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
|
2018-12-18 23:31:57 +08:00
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
|
2018-12-19 14:46:17 +08:00
|
|
|
<!-- <script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script> -->
|
2018-12-19 12:09:18 +08:00
|
|
|
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
|
2018-12-19 12:25:02 +08:00
|
|
|
<script>
|
|
|
|
const gitalk = new Gitalk({
|
|
|
|
clientID: 'c6c02367e36ca6e2bb2d',
|
|
|
|
clientSecret: '31a2700e3315b21c5e9f2e887709d8cf21f9ff8f',
|
2018-12-19 12:55:02 +08:00
|
|
|
repo: 'Gittalk-Issue',
|
2018-12-19 12:25:02 +08:00
|
|
|
owner: 'CyC2018',
|
|
|
|
admin: ['CyC2018'],
|
|
|
|
// distractionFreeMode: false
|
|
|
|
})
|
|
|
|
</script>
|
2018-12-18 21:02:11 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|