Skip to content

Commit c9572bf

Browse files
committed
docsify
1 parent 76ad497 commit c9572bf

File tree

8 files changed

+82
-0
lines changed

8 files changed

+82
-0
lines changed

docs/.nojekyll

Whitespace-only changes.

docs/README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Headline
2+
3+
> An awesome project.
4+
5+
6+
7+
```java
8+
int a = 1;
9+
```
10+
11+
# H1
12+
13+
## H2
14+
15+
### H3

docs/_coverpage.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<img width="150px" src="_media/LogoMakr_1J56bI.png">
2+
3+
# CS-Notes
4+
5+
> Computer Sicence Learning Notes.
6+
7+
- Algorithm
8+
- Computer Networks
9+
- Operating System
10+
- ...
11+
12+
[GitHub](https://github.com/CyC2018/CS-Notes)
13+
14+
<!-- ![color](#107ea485) -->
15+

docs/_media/LogoMakr_1J56bI.png

56.2 KB
Loading

docs/_navbar.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- Translations
2+
- [:uk: English](/)
3+
- [:cn: 中文](/zh-cn/)
4+
- [:de: Deutsch](/de-de/)
5+
- [:es: Spanish](/es/)
6+
- [:ru: Russian](/ru/)

docs/_sidebar.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- Getting started
2+
3+
- [README](README.md)
4+
- [guide](guide.md)

docs/guide.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# test

docs/index.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>Document</title>
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
8+
<meta name="description" content="Description">
9+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
10+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
11+
<link rel="stylesheet" href="//unpkg.com/gitalk/dist/gitalk.css">
12+
<script src="//unpkg.com/docsify/lib/plugins/gitalk.min.js"></script>
13+
<script src="//unpkg.com/gitalk/dist/gitalk.min.js"></script>
14+
</head>
15+
16+
<body>
17+
<nav>
18+
<a href="#/">Github</a>
19+
</nav>
20+
<div id="app"></div>
21+
<script>
22+
window.$docsify = {
23+
name: 'CS-Notes',
24+
repo: '',
25+
loadSidebar: true,
26+
subMaxLevel: 2,
27+
coverpage: true
28+
}
29+
const gitalk = new Gitalk({
30+
clientID: '0a3e1a4c29a4778f35f2',
31+
clientSecret: '5bf2890d68acc32cbf8327924805a0b48e15f64c',
32+
repo: 'test',
33+
owner: 'CyC2018',
34+
admin: ['CyC2018'],
35+
distractionFreeMode: false
36+
})
37+
</script>
38+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
39+
</body>
40+
41+
</html>

0 commit comments

Comments
 (0)