-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmkdocs.yml
51 lines (45 loc) · 1.51 KB
/
mkdocs.yml
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
site_name: Let's Go! Golang 短视频教程
site_author: 'PegasusWang'
repo_name: 'LetsGo'
repo_url: 'https://github.com/PegasusWang/LetsGo'
# theme: readthedocs
copyright: 'Copyright © 2019 - 2020 PegasusWang'
# Configuration, https://squidfunk.github.io/mkdocs-material/
theme:
name: 'material'
palette:
primary: 'black'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra:
# disqus: 'pegasus'
social:
- type: 'github'
link: 'https://github.com/PegasusWang'
markdown_extensions:
- admonition
- mdx_math:
enable_dollar_delimiter: true #for use of inline $..$
- codehilite: # https://squidfunk.github.io/mkdocs-material/extensions/codehilite/
linenums: true
guess_lang: true
- toc:
permalink: true
nav:
- 简介: 'index.md'
- Go基础:
- 'Hello Go!': 'basics/00_hello_go/hello_go.md'
- 'Go 基础类型': 'basics/01_go_basic_types/basic_types.md'
- 'Go 数组和切片': 'basics/02_go_array_and_slice/array_and_slice.md'
- 'Go 映射': 'basics/03_map/map.md'
- 'Go 控制流语句': 'basics/04_go_control_flow/go_procedural.md'
- 'Go 函数': 'basics/05_func/func.md'
- 'Go 错误处理': 'basics/06_error/error.md'
- 'Go 面向对象编程': 'basics/07_oop/oop.md'
- 'Go struct': 'basics/08_struct/struct.md'
- 'Go 接口': 'basics/09_interface/interface.md'
- 'Goroutine 初探': 'basics/10_goroutine/goroutine.md'